Interface ITabStripItem
A tab item in a SAP NWBC tab strip.
public interface ITabStripItem
Properties
Identifier
The identifier of the tab strip item. The identifier can be the 0-based numeric index or the name of the tab.
object Identifier { get; }
Property Value
Index
The 0-based index of the tab item within the tab strip.
int Index { get; }
Property Value
Name
The name of the tab item.
string Name { get; }
Property Value
TextRepresentation
The text representation of the tab strip item.
string TextRepresentation { get; }
Property Value
Methods
DragItem(object)
Performs the drag part of a drag and drop operation on a specific tab.
void DragItem(object identifier)
Parameters
identifierobjectThe identifier of the tab to drag. The tab name or 0-based numeric index can denote the item.
DropOnItem(object)
Performs the drop part of a drag and drop operation on a specific tab.
void DropOnItem(object identifier)
Parameters
identifierobjectThe identifier of the tab to drop on. The tab name or 0-based numeric index can denote the item.
Select()
Selects this tab from the tab strip.
void Select()