Interface ITabControl
A tab strip control in a SAP GUI for Windows application.
public interface ITabControl : IElement, ITestObject, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider
- Inherited Members
- Extension Methods
Properties
SelectedTab
The name of the selected tab.
string SelectedTab { get; }
Property Value
Tabs
The list of tabs in the tab strip.
ReadOnlyCollection<string> Tabs { get; }
Property Value
Text
The text associated with the tab strip.
string Text { get; }
Property Value
Tooltip
The tab strip's tooltip.
string Tooltip { get; }
Property Value
Methods
Select(string)
Selects a tab from the tab strip by name.
void Select(string tab)
Parameters
tabstringThe name of the tab to select.
Select(uint)
Selects a tab in the tabstrip object by index.
void Select(uint tabIndex)
Parameters
tabIndexuint1-based.
SetFocus()
Sets the focus on the tab strip.
void SetFocus()
Remarks
Invoke this method before invoking methods that operate on the strip.