Class ComboBoxField
Represents a combobox field.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public sealed class ComboBoxField : ChoiceField, IInstanceIdOwner, IWidgetCreator<VariableContentWidget>
Constructors
ComboBoxField(String)
Initializes a new instance of ComboBoxField class.
Declaration
public ComboBoxField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
DefaultValue
Gets or set the default value used when the form is reset to its default values.
Declaration
public ChoiceOption DefaultValue { get; set; }
Property Value
ChoiceOption
|
FieldType
Gets the field type.
Declaration
public override FormFieldType FieldType { get; }
Property Value
FormFieldType
|
Overrides
HasEditableTextBox
Gets or sets boolean value indicating whether combo box should have an additional text box for choice input.
Declaration
public bool HasEditableTextBox { get; set; }
Property Value
System.Boolean
|
ShouldSpellCheck
Gets or sets boolean value indicating whether the inputted text should be spell checked.
Declaration
public bool ShouldSpellCheck { get; set; }
Property Value
System.Boolean
|
Value
Gets or set the field value. This value may differ from all choice values when it is inputed from the editable text box.
Declaration
public ChoiceOption Value { get; set; }
Property Value
ChoiceOption
|