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