New to Telerik Document ProcessingStart a free 30-day trial

Selectable option used by choice fields (combo box, list box), holding the data value and optional display text.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.InteractiveForms

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public sealed class ChoiceOption : FieldOptionBase

Inheritance: objectFieldOptionBaseChoiceOption

Constructors

Initialize a new ChoiceOption with the specified data value.

C#
public ChoiceOption(string value)
Parameters:valuestring

The string value for this choice option.

Properties

Gets or sets the UI label shown to users; when null, Value is displayed.

C#
public string UserInterfaceValue { get; set; }
Property Value:

The display text for this option, or null to use the Value property for display.

Gets or sets the data value used for submission and processing.

C#
public override string Value { get; set; }
Property Value:

The underlying string value that represents this option's data.

Overrides: FieldOptionBase.Value