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