Interface ITabControl
A .NET Windows Forms tab control.
Inherited Members
Namespace: HP.LFT.SDK.WinForms
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITabControl : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
AttachedText
The static text attached to this control.
Declaration
string AttachedText { get; }
Property Value
| Type | Description |
|---|---|
| string |
ErrorText
Returns the tooltip text of the error icon associated with this object.
Declaration
string ErrorText { 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 control.
Declaration
ReadOnlyCollection<string> Tabs { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<string> |
Methods
Select(int, MouseButton)
Selects the specified tab item.
Declaration
void Select(int index, MouseButton button = MouseButton.Left)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | 0-based index of the item. |
| MouseButton | button | Optional: The mouse button used to select the list item. Default is left button. |
Select(string, MouseButton)
Selects the specified tab item.
Declaration
void Select(string item, MouseButton button = MouseButton.Left)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The text of the item to select from the tabcontrol. |
| MouseButton | button | Optional: The mouse button used to select the list item. Default is left button. |