Interface ITabStrip
A .NET WPF tab strip object.
Inherited Members
Namespace: HP.LFT.SDK.WPF
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITabStrip : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
Name
The name of this object.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
SelectedTab
Returns the selected tab.
Declaration
string SelectedTab { get; }
Property Value
| Type | Description |
|---|---|
| string |
Tabs
Returns the tabs in this tab object.
Declaration
ReadOnlyCollection<string> Tabs { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<string> |
Methods
Select(int)
Selects the specified tab item.
Declaration
void Select(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The 0-based index of the tab. |
Select(string)
Selects the specified tab item.
Declaration
void Select(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The text of the item to select from the tab object. |