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.FindTab (String)

This method looks for text in the list of tabs (comparing using .equals) and returns the index, or-1 if it doesn't exist.

[Visual Basic]
Overloads Public Function FindTab( _
   ByVal text As String _
) As Integer
[C#]
public int FindTab(
   string text
);
[C++]
public: int FindTab(
   String* text
);
[JScript]
public function FindTab(
   text : String
) : int;

Parameters

text
The text to search for

Return Value

index of where the item was found, or-1.

See Also

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