Class RadioGroupDescription
The description of a Web RadioGroup test object.
public class RadioGroupDescription : FormFieldDescription, ICloneable, IDescription
- Inheritance
-
RadioGroupDescription
- Implements
- Inherited Members
Constructors
RadioGroupDescription()
public RadioGroupDescription()
Properties
HasSelectedItem
Indicates whether a radio button is selected in the current group.
public bool? HasSelectedItem { get; set; }
Property Value
- bool?
IsEnabled
Indicates whether the object is enabled.
public bool? IsEnabled { get; set; }
Property Value
- bool?
Items
A collection of all radio buttons in the radio group (separated by ;).
public string[] Items { get; set; }
Property Value
- string[]
ItemsCount
The number of items in the group.
public uint? ItemsCount { get; set; }
Property Value
- uint?
SelectedIndex
The index of the selected item in the radio group.
public int? SelectedIndex { get; set; }
Property Value
- int?
Remarks
To describe a radio group with no selected item, set the SelectedIndex to -1.
SelectedItem
The currently selected radio button.
public StringProperty SelectedItem { get; set; }