RadioButtonField
Radio button group enabling a single logical choice (or controlled deselection) among mutually exclusive options in a PDF form.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public sealed class RadioButtonField : FormField, IStructuralElement
Inheritance: objectFormFieldRadioButtonField
Implements:
Inherited Members
Constructors
Create a radio button field grouping options under the specified fieldName.
Properties
Gets or sets whether the user may toggle the selected option off leaving the group with no selection.
public bool AllowToggleOff { get; set; }
Gets or sets the option selected after a form reset (default choice).
public RadioOption DefaultValue { get; set; }
Gets the form field type identifier (RadioButton) used during export and processing.
public override FormFieldType FieldType { get; }
Overrides:
Gets the list of mutually exclusive selectable options.
public RadioOptionCollection Options { get; }
A collection containing all radio button options that users can choose from.
Gets or sets whether widgets sharing an identical value update selection state together (value‑based unison behavior).
public bool ShouldUpdateRadiosInUnison { get; set; }
Gets or sets the currently selected option; changing it raises the value changed event.
public RadioOption Value { get; set; }
The selected radio option, or null if no option is currently selected.
Gets the widget collection rendering each option on document pages.
public RadioButtonWidgetCollection Widgets { get; }
A specialized widget collection containing all radio button widgets associated with this field.