ComboBoxField
Choice field with a drop‑down list; optionally allows free‑text entry when editable.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public sealed class ComboBoxField : ChoiceField, IStructuralElement
Inheritance: objectFormFieldFormField<VariableContentWidget>ChoiceFieldComboBoxField
Implements:
Inherited Members
Constructors
Initializes a new instance of ComboBoxField class.
Properties
Gets or sets the option selected when the form is reset to defaults.
public ChoiceOption DefaultValue { get; set; }
The default choice option to be selected on form reset, or null if no default is specified.
Gets the field category reported to viewers for rendering and processing.
public override FormFieldType FieldType { get; }
Overrides:
Gets or sets whether the drop‑down includes an editable text area so users can type custom values.
public bool HasEditableTextBox { get; set; }
true if users can type custom text; false if they can only select from predefined options.
Gets or sets whether spell checking applies to text typed in the editable area.
public bool ShouldSpellCheck { get; set; }
true to enable spell checking; false to disable it.
Gets or sets the currently selected option; when editable, may reflect user‑typed text instead of a predefined option.
public ChoiceOption Value { get; set; }
The selected choice option, or null if no option is selected.