'Declaration
Public Event TabStripSelect As TabStripSelectEventHandler
'Usage
Dim instance As TabStrip Dim handler As TabStripSelectEventHandler AddHandler instance.TabStripSelect, handler
public event TabStripSelectEventHandler TabStripSelect
Event Data
The event handler receives an argument of type TabStripSelectEventArgs containing data related to this event. The following TabStripSelectEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel. |
SelectedTab | Gets the index of the selected tab. |
See Also