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, String)

Allows you to add text 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 text As String _
) As Integer
[C#]
public int InsertTab(
   int index,
   string text
);
[C++]
public: int InsertTab(
   int index,
   String* text
);
[JScript]
public function InsertTab(
   index : int,
   text : String
) : int;

Parameters

index
Where in the tabstrip [zero-based] it should be inserted.
text
The string 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