Interface ITabControl
A Java tabstrip control containing tabbed panels.
Inherited Members
Namespace: HP.LFT.SDK.Java
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITabControl : IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber
Properties
OrigLogicalLocation
The original logical location of the tab object.
Declaration
string OrigLogicalLocation { get; }
Property Value
| Type | Description |
|---|---|
| string |
SelectedTab
The selected tabbed panel.
Declaration
string SelectedTab { get; }
Property Value
| Type | Description |
|---|---|
| string |
TabsCount
The number of tabbed panels contained in the tab object.
Declaration
int TabsCount { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
Close(int)
Closes the specified tab panel.
Declaration
void Close(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The tab index to close. |
Close(string)
Closes the specified tab panel.
Declaration
void Close(string tab)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tab | The tab to close. |
Select(int)
Selects the specified tab panel.
Declaration
void Select(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index of the tab to select. |
Select(string)
Selects the specified tab panel.
Declaration
void Select(string tab)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tab | The tab to select. |