CPDFComboBoxWidget constructor
CPDFComboBoxWidget({
- required String title,
- required int page,
- required CPDFRectF rect,
- required Color borderColor,
- required Color fillColor,
- String uuid = '',
- DateTime? createDate,
- double borderWidth = 2,
- List<
CPDFWidgetItem> ? options, - int selectItemAtIndex = 0,
- Color fontColor = Colors.black,
- double fontSize = 20,
- String familyName = 'Helvetica',
- String styleName = 'Regular',
Implementation
CPDFComboBoxWidget({
required super.title,
required super.page,
required super.rect,
required super.borderColor,
required super.fillColor,
super.uuid,
super.createDate,
super.borderWidth = 2,
this.options,
this.selectItemAtIndex = 0,
this.fontColor = Colors.black,
this.fontSize = 20,
this.familyName = 'Helvetica',
this.styleName = 'Regular',
}) : super(type: CPDFFormType.comboBox);