Table of Contents

Class RadioGroupDescription

The description of a Web RadioGroup test object.

Namespace: HP.LFT.SDK.Web
Assembly: HP.LFT.SDK.dll
Syntax
public class RadioGroupDescription : FormFieldDescription, ICloneable, IDescription

Constructors

RadioGroupDescription()

Declaration
public RadioGroupDescription()

Properties

HasSelectedItem

Indicates whether a radio button is selected in the current group.

Declaration
public bool? HasSelectedItem { get; set; }
Property Value
Type Description
bool?

IsEnabled

Indicates whether the object is enabled.

Declaration
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Items

A collection of all radio buttons in the radio group (separated by ;).

Declaration
public string[] Items { get; set; }
Property Value
Type Description
string[]

ItemsCount

The number of items in the group.

Declaration
public uint? ItemsCount { get; set; }
Property Value
Type Description
uint?

SelectedIndex

The index of the selected item in the radio group.

Declaration
public int? SelectedIndex { get; set; }
Property Value
Type Description
int?
Remarks

To describe a radio group with no selected item, set the SelectedIndex to -1.

SelectedItem

The currently selected radio button.

Declaration
public StringProperty SelectedItem { get; set; }
Property Value
Type Description
StringProperty

Implements

ICloneable
IDescription