Class PdfFormComboBox
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Represents a combo box in a PDF form
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormComboBox : PdfFormField
- Inheritance
-
PdfFormComboBox
- Inherited Members
Properties
AllowMultiSelect
A flag indicating if it is allowed to have multiple selections in combo box list. This property is false by default
public bool AllowMultiSelect { get; set; }
Property Value
CommitOnSelectionChanged
A flag indicating if a new value selected is committed immediately without waiting to leave the field. This property is false by default
public bool CommitOnSelectionChanged { get; set; }
Property Value
Editable
A flag indicating if the combo box presents a text box above the drop down list. This property is true by default
public bool Editable { get; set; }
Property Value
Font
Gets or sets the combo box items font
public PdfFont Font { get; set; }
Property Value
ListItems
Gets or sets the the combo box items
public string[] ListItems { get; set; }
Property Value
- string[]
SortItems
A flag indicating if the list items are sorted alphabetically. This property is false by default
public bool SortItems { get; set; }
Property Value
SpellChecking
A flag indicating if the spell checking is enabled for the text entered. This property is false by default
public bool SpellChecking { get; set; }