Gets or sets the index of currently selected TabPage.

Namespace:  BeeMobile.ToolBar
Assembly:  BeeMobile.ToolBar.CF35 (in BeeMobile.ToolBar.CF35.dll) Version: 3.5.3.0

Syntax

C#
public int SelectedTabIndex { get; set; }
Visual Basic (Declaration)
Public Property SelectedTabIndex As Integer
Visual C++
public:
property int SelectedTabIndex {
	int get ();
	void set (int value);
}

Remarks

If you set a value less than 0 to SelectedTabIndex, it will be automatically set to -1 which means that no TabPage is selected.

If you set a value equal to or greater than the amount of TabPage objects in the TabPages collection, SelectedTabIndex will throw ArgumentOutOfRangeException.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException Thrown, if the set value is equal to or greater than the amount of TabPage objects in the TabPages collection.

See Also