New to Telerik Document ProcessingStart a free 30-day trial

Radio button group enabling a single logical choice (or controlled deselection) among mutually exclusive options in a PDF form.

Definition

Constructors

Create a radio button field grouping options under the specified fieldName.

C#
public RadioButtonField(string fieldName)
Parameters:fieldNamestring

The field name.

Properties

Gets or sets whether the user may toggle the selected option off leaving the group with no selection.

C#
public bool AllowToggleOff { get; set; }

Gets or sets the option selected after a form reset (default choice).

C#
public RadioOption DefaultValue { get; set; }

Gets the form field type identifier (RadioButton) used during export and processing.

C#
public override FormFieldType FieldType { get; }

Overrides: FormField.FieldType

Gets the list of mutually exclusive selectable options.

C#
public RadioOptionCollection Options { get; }
Property Value:

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).

C#
public bool ShouldUpdateRadiosInUnison { get; set; }

Gets or sets the currently selected option; changing it raises the value changed event.

C#
public RadioOption Value { get; set; }
Property Value:

The selected radio option, or null if no option is currently selected.

Gets the widget collection rendering each option on document pages.

C#
public RadioButtonWidgetCollection Widgets { get; }
Property Value:

A specialized widget collection containing all radio button widgets associated with this field.