Skip to main content
Version: 3.5

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.

public delegate void TabControlEventHandler(Object sender, TabControlEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eTabControlEventArgsA TabControlEventArgs that contains the event data.

Fired By

NameDescription
TabControl.TabClosedOccurs after a tab is closed by the user and has been removed from the tab control.
TabControl.TabVisibilityChangedOccurs after a tab is shown or hidden by the user through the ShowVisibilityMenu or programmatically through the Hidden property.
TabControl.SelectedFired when a tab is selected.
TabControl.DeselectedFired when a tab is deselected.
TabControl.TabMovedFired when the user drags a TabPage into a new position and the AllowUserToMoveTabs property is set to true.