Skip to main content
Version: 4.1

TabControlEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

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

public class TabControlEventArgs : EventArgs

Constructors

Instance member TabControlEventArgs(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 member Action

TabControlAction: Returns a value indicating which event is occurring.

Instance member TabPage

TabPage: Returns the TabPage the event is occurring for.

Instance member TabPageIndex

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.