Interface ITabStrip
An SAPUI5 tabstrip object.
Inherited Members
Namespace: HP.LFT.SDK.SAP.UI5
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITabStrip : IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop, IEnabledProvider
Properties
SelectedTab
The selected tab in the tabstrip object.
Declaration
string SelectedTab { get; }
Property Value
| Type | Description |
|---|---|
| string |
Tabs
The list of all tabs contained in the tabstrip object.
Declaration
ReadOnlyCollection<string> Tabs { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<string> |
Methods
Deselect(string)
Deselects the specified tab from the tabstrip object.
Declaration
void Deselect(string tab)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tab | The tab to deselect. |
Deselect(uint)
Deselects the specified tab (by index) from the tabstrip object.
Declaration
void Deselect(uint tabIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | tabIndex | The tab index to deselect (1-based). |
Remove(string)
Removes the specified tab from the tabstrip object.
Declaration
void Remove(string tab)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tab | The tab to remove. |
Remove(uint)
Removes the specified tab (by index) from the tabstrip object.
Declaration
void Remove(uint tabIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | tabIndex | The tab index to remove (1-based). |
Select(string)
Selects the specified tab in the tabstrip object.
Declaration
void Select(string tab)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tab | The tab to select. |
Select(uint)
Selects the specified tab (by index) in the tabstrip object.
Declaration
void Select(uint tabIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | tabIndex | The tab index to select (1-based). |