Class ChoiceOption
Selectable option used by choice fields (combo box, list box), holding the data value and optional display text.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public sealed class ChoiceOption : FieldOptionBase, IContextClonable<ChoiceOption>
Constructors
ChoiceOption(String)
Initialize a new ChoiceOption with the specified data value.
Declaration
public ChoiceOption(string value)
Parameters
|
System.String
value
The string value for this choice option. |
Properties
UserInterfaceValue
Gets or sets the UI label shown to users; when null, Value is displayed.
Declaration
public string UserInterfaceValue { get; set; }
Property Value
|
System.String
The display text for this option, or null to use the Value property for display. |
Value
Gets or sets the data value used for submission and processing.
Declaration
public override string Value { get; set; }
Property Value
|
System.String
The underlying string value that represents this option's data. |