NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TabStrip.InsertTab (Int32, TabItem)

Allows you to add a TabItem to the TabStrip, but in a location you specify, as opposed to the end of the list. An exception is thrown if the index is out of range.

[Visual Basic]
Overloads Public Function InsertTab( _
   ByVal index As Integer, _
   ByVal item As TabItem _
) As Integer
[C#]
public int InsertTab(
   int index,
   TabItem item
);
[C++]
public: int InsertTab(
   int index,
   TabItem* item
);
[JScript]
public function InsertTab(
   index : int,
   item : TabItem
) : int;

Parameters

index
Where in the tabstrip [zero-based] it should be inserted.
item
The value of the item you want inserted Throws IllegalArgument Exception if the index is out of range.

See Also

TabStrip Class | TabStrip Members | System.WinForms Namespace | TabStrip.InsertTab Overload List