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.SetTab (Int32, String)

Allows the user to replace/explicitly set the text for the tab at the given index. If there is no value at the supplied index, an exception is thrown. Otherwise, the value becomes the newly supplied one

[Visual Basic]
Overloads Public Sub SetTab( _
   ByVal index As Integer, _
   ByVal text As String _
)
[C#]
public void SetTab(
   int index,
   string text
);
[C++]
public: void SetTab(
   int index,
   String* text
);
[JScript]
public function SetTab(
   index : int,
   text : String
);

Parameters

index
Index of tab to change the value for
text
New text for said index Throws IllegalArgument Exception if the index is not currently assigned a value.

See Also

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