Interface IRadioGroup
An Oracle option (radio button) group.
Inherited Members
Namespace: HP.LFT.SDK.Oracle
Assembly: HP.LFT.SDK.dll
Syntax
public interface IRadioGroup : IUiObjectBase, IClickable, ILocationInfoProvider, IEnabledProvider, ITestObject, ITestObjectDescriber
Properties
Caption
The caption of the object.
Declaration
string Caption { get; }
Property Value
| Type | Description |
|---|---|
| string |
ClassPath
The Oracle class hierarchy of the object's Oracle class.
Declaration
string ClassPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectDescription
The accessibility description of the object, as specified by the server.
Declaration
string ObjectDescription { get; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectName
The internal name of the object, as supplied by the application server.
Declaration
string ObjectName { get; }
Property Value
| Type | Description |
|---|---|
| string |
SelectedIndex
The index of the selected item (0-based). NOTE: If no item is selected, -1 is returned.
Declaration
int SelectedIndex { get; }
Property Value
| Type | Description |
|---|---|
| int |
SelectedItem
The value of the selected item.
Declaration
IRadioGroupItem SelectedItem { get; }
Property Value
| Type | Description |
|---|---|
| IRadioGroupItem |
TooltipText
The text displayed in the object's tooltip.
Declaration
string TooltipText { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
GetItem(int)
Returns the item with the specified text.
Declaration
IRadioGroupItem GetItem(int itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | itemIndex | The index of the item (0-based). |
Returns
| Type | Description |
|---|---|
| IRadioGroupItem |
GetItem(string)
Returns the item with the specified text.
Declaration
IRadioGroupItem GetItem(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The text of the item. |
Returns
| Type | Description |
|---|---|
| IRadioGroupItem |
Select(IRadioGroupItem)
Selects the radio button with the specified value.
Declaration
void Select(IRadioGroupItem item)
Parameters
| Type | Name | Description |
|---|---|---|
| IRadioGroupItem | item | The item to select. |
Select(int)
Selects the radio button with the specified value.
Declaration
void Select(int itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | itemIndex | The 0-based index of the item to select. |
Select(string)
Selects the radio button with the specified value.
Declaration
void Select(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The item to select. |
SetFocus()
Transfers the focus to the option group.
Declaration
void SetFocus()