Interface ITabStrip
A tab strip in a SAP NWBC application.
public interface ITabStrip : IUIObjectBase, ITestObject, ITestObjectDescriber, ISupportsNativeObject, ILocationInfoProvider, IClickable, IDoubleClickable, ISupportDragAndDrop, ISupportSendKeys, IEnabledProvider, IVisibleProvider
- Inherited Members
- Extension Methods
Methods
GetItem(object)
Returns the tab strip item specified by the identifier.
ITabStripItem GetItem(object identifier)
Parameters
identifierobjectThe 0-based numeric index or name of the tab.
Returns
- ITabStripItem
The specified tab as an ITabStripItem object.
Items()
Returns all of the tabs in the tab strip.
IList<ITabStripItem> Items()
Returns
- IList<ITabStripItem>
A list of ITabStripItem objects representing all tabs.
ItemsCount()
Returns the number of tabs in the tab strip.
int ItemsCount()
Returns
- int
The number of tabs.
Select(object)
Selects a tab from the tab strip.
void Select(object identifier)
Parameters
identifierobjectThe tab name or 0-based numeric index of the tab to select.
SelectedItems()
Returns the selected tabs in the tab strip.
IList<ITabStripItem> SelectedItems()
Returns
- IList<ITabStripItem>
A list of selected ITabStripItem objects.