Table of Contents

Interface IRadioGroup

Namespace
HP.LFT.SDK.Oracle
Assembly
HP.LFT.SDK.dll

An Oracle option (radio button) group.

public interface IRadioGroup : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
Inherited Members
Extension Methods

Properties

Caption

The caption of the object.

string Caption { get; }

Property Value

string

ClassPath

The Oracle class hierarchy of the object's Oracle class.

string ClassPath { get; }

Property Value

string

ObjectDescription

The accessibility description of the object, as specified by the server.

string ObjectDescription { get; }

Property Value

string

ObjectName

The internal name of the object, as supplied by the application server.

string ObjectName { get; }

Property Value

string

SelectedIndex

The index of the selected item (0-based). NOTE: If no item is selected, -1 is returned.

int SelectedIndex { get; }

Property Value

int

SelectedItem

The value of the selected item.

IRadioGroupItem SelectedItem { get; }

Property Value

IRadioGroupItem

TooltipText

The text displayed in the object's tooltip.

string TooltipText { get; }

Property Value

string

Methods

GetItem(int)

Returns the item with the specified text.

IRadioGroupItem GetItem(int itemIndex)

Parameters

itemIndex int

The index of the item (0-based).

Returns

IRadioGroupItem

GetItem(string)

Returns the item with the specified text.

IRadioGroupItem GetItem(string item)

Parameters

item string

The text of the item.

Returns

IRadioGroupItem

Select(IRadioGroupItem)

Selects the radio button with the specified value.

void Select(IRadioGroupItem item)

Parameters

item IRadioGroupItem

The item to select.

Select(int)

Selects the radio button with the specified value.

void Select(int itemIndex)

Parameters

itemIndex int

The 0-based index of the item to select.

Select(string)

Selects the radio button with the specified value.

void Select(string item)

Parameters

item string

The item to select.

SetFocus()

Transfers the focus to the option group.

void SetFocus()