Class ChoiceField
Represents an abstract base class for interactive form fields that allow users to select from predefined options, such as combo boxes and list boxes.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public abstract class ChoiceField : FormField<VariableContentWidget>, IInstanceIdOwner, IStructuralElement, IWidgetCreator<VariableContentWidget>
Properties
Options
Gets the collection of selectable options available for this choice field.
Declaration
public ChoiceOptionCollection Options { get; }
Property Value
ChoiceOptionCollection
A collection containing all options that users can select from in this choice field. |
ShouldCommitOnSelectionChange
Gets or sets a value indicating whether the form should be automatically submitted when the user changes the selection in this choice field.
Declaration
public bool ShouldCommitOnSelectionChange { get; set; }
Property Value
System.Boolean
true to submit the form immediately when selection changes; false to require manual form submission. |