TabControl.DeselectTab Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Makes the tab following the specified tab the current tab.
Overloads
DeselectTab(String) |
Makes the tab following the tab with the specified name the current tab. |
DeselectTab(TabPage) |
Makes the tab following the specified TabPage the current tab. |
DeselectTab(Int32) |
Makes the tab following the tab with the specified index the current tab. |
DeselectTab(String)
Makes the tab following the tab with the specified name the current tab.
public:
void DeselectTab(System::String ^ tabPageName);
public void DeselectTab (string tabPageName);
member this.DeselectTab : string -> unit
Public Sub DeselectTab (tabPageName As String)
Parameters
Exceptions
The tabPageName
argument is null
.
-or-
The tabPageName
argument does not match the Name property of any TabPage in the TabPages collection.
Remarks
Use this method to programmatically deselect a particular tab in a TabControl. If there are at least two tabs in the control, the tab following the specified tab becomes the current tab. If the specified tab is the last tab in the control, the first tab becomes the current tab.
See also
Applies to
DeselectTab(TabPage)
Makes the tab following the specified TabPage the current tab.
public:
void DeselectTab(System::Windows::Forms::TabPage ^ tabPage);
public void DeselectTab (System.Windows.Forms.TabPage tabPage);
member this.DeselectTab : System.Windows.Forms.TabPage -> unit
Public Sub DeselectTab (tabPage As TabPage)
Parameters
Exceptions
index
is less than 0 or greater than the number of TabPage controls in the TabPages collection minus 1.
-or-
tabPage
is not in the TabPages collection.
The tabPage
argument is null
.
Remarks
Use this method to programmatically deselect a particular tab in a TabControl. If there are at least two tabs in the control, the tab following the specified tab becomes the current tab. If the specified tab is the last tab in the control, the first tab becomes the current tab.
See also
Applies to
DeselectTab(Int32)
Makes the tab following the tab with the specified index the current tab.
public:
void DeselectTab(int index);
public void DeselectTab (int index);
member this.DeselectTab : int -> unit
Public Sub DeselectTab (index As Integer)
Parameters
Exceptions
index
is less than 0 or greater than the number of TabPage controls in the TabPages collection minus 1.
Remarks
Use this method to programmatically deselect a particular tab in a TabControl. If there are at least two tabs in the control, the tab following the specified tab becomes the current tab. If the specified tab is the last tab in the control, the first tab becomes the current tab.