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

Allows the user to replace/explicitly set 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 item As TabItem _
)
[C#]
public void SetTab(
   int index,
   TabItem item
);
[C++]
public: void SetTab(
   int index,
   TabItem* item
);
[JScript]
public function SetTab(
   index : int,
   item : TabItem
);

Parameters

index
Index of tab to change the value for
item
New value 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