Class RadioButtonField
Represents a field which usually provides group with several radio button options.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public sealed class RadioButtonField : FormField, IInstanceIdOwner, IWidgetCreator<RadioButtonWidget>, ITwoStatesButtonField<RadioOption>
Constructors
RadioButtonField(String)
Initializes a new instance of RadioButtonField class.
Declaration
public RadioButtonField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
AllowToggleOff
Gets or sets boolean value indicating whether to allow deselecting all radio buttons.
Declaration
public bool AllowToggleOff { get; set; }
Property Value
System.Boolean
|
DefaultValue
Gets or sets the default field value used when the form is reset to its default values.
Declaration
public RadioOption DefaultValue { get; set; }
Property Value
RadioOption
|
FieldType
Gets the field type.
Declaration
public override FormFieldType FieldType { get; }
Property Value
FormFieldType
|
Overrides
Options
Gets the collection of options to choose from.
Declaration
public RadioOptionCollection Options { get; }
Property Value
RadioOptionCollection
|
ShouldUpdateRadiosInUnison
Gets or sets boolean value indicating whether to turn on and off in unison radio buttons that have the same value.
Declaration
public bool ShouldUpdateRadiosInUnison { get; set; }
Property Value
System.Boolean
|
Value
Gets or sets the field value.
Declaration
public RadioOption Value { get; set; }
Property Value
RadioOption
|
Widgets
Gets the collection of widgets which are representing the radio button options.
Declaration
public RadioButtonWidgetCollection Widgets { get; }
Property Value
RadioButtonWidgetCollection
|