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.GetTab

Returns the tab at the given index. All indices are zero-based. An exception is thrown if the index is out of range.

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

Parameters

index
Index of the item we wish to retrieve.

Return Value

TabItem the tabItem at the given index. Throws IllegalArgument Exception if the index is out of range.

See Also

TabStrip Class | TabStrip Members | System.WinForms Namespace