TabControlEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the Selected or Deselected event of a TabControl control.
- C#
- VB.NET
public delegate void TabControlEventHandler(Object sender, TabControlEventArgs e)
Public Delegate Sub TabControlEventHandler(ByVal sender As [Object], ByVal e As TabControlEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | TabControlEventArgs | A TabControlEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| TabControl.TabClosed | Occurs after a tab is closed by the user and has been removed from the tab control. |
| TabControl.TabVisibilityChanged | Occurs after a tab is shown or hidden by the user through the ShowVisibilityMenu or programmatically through the Hidden property. |
| TabControl.Selected | Fired when a tab is selected. |
| TabControl.Deselected | Fired when a tab is deselected. |
| TabControl.TabMoved | Fired when the user drags a TabPage into a new position and the AllowUserToMoveTabs property is set to true. |