Skip to main content
Version: 3.5

TabControlEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the Selected and Deselected events of a TabControl control.

public class TabControlEventArgs : EventArgs

Constructors

Instance memberTabControlEventArgs(tabPage, tabPageIndex, action)

Initializes a new instance of the TabControlEventArgs class.

NameTypeDescription
tabPageTabPageThe TabPage the event is occurring for.
tabPageIndexInt32The zero-based index of tabPage in the TabPages collection.
actionTabControlActionOne of the TabControlAction values.

Properties

Instance memberAction

TabControlAction: Returns a value indicating which event is occurring.

Instance memberTabPage

TabPage: Returns the TabPage the event is occurring for.

Instance memberTabPageIndex

Int32: Returns the zero-based index of the TabPage in the TabPages collection.

Used By

NameDescription
TabControlEventHandlerRepresents the method that will handle the Selected or Deselected event of a TabControl control.