Class ListBoxField
Represents a listbox field.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public sealed class ListBoxField : ChoiceField, IInstanceIdOwner, IWidgetCreator<VariableContentWidget>
Constructors
ListBoxField(String)
Initializes a new instance of ListBoxField class.
Declaration
public ListBoxField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
AllowMultiSelection
Gets or sets boolean value indicating whether to allow multiple items selection.
Declaration
public bool AllowMultiSelection { get; set; }
Property Value
System.Boolean
|
DefaultValue
Gets or set the default selected values 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 sealed FormFieldType FieldType { get; }
Property Value
FormFieldType
|
Overrides
TopIndex
Gets or sets the index of the first item to be visible when displaying the ListBox.
Declaration
public int TopIndex { get; set; }
Property Value
System.Int32
|
Value
Gets or sets an array of selected values.
Declaration
public ChoiceOption[] Value { get; set; }
Property Value
ChoiceOption[]
|