Skip to main content
Version: 3.5

TabControlCancelEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the Selecting and Deselecting events of a TabControl control.

public class TabControlCancelEventArgs : CancelEventArgs

Constructors

Instance memberTabControlCancelEventArgs(tabPage, tabPageIndex, cancel, action)

Initializes a new instance of the TabControlCancelEventArgs class.

NameTypeDescription
tabPageTabPageThe TabPage the event is occurring for.
tabPageIndexInt32The zero-based index of tabPage in the TabPages collection.
cancelBooleantrue to cancel the tab change by default; otherwise, false.
actionTabControlActionOne of the TabControlAction values.

Instance memberTabControlCancelEventArgs(tabPage, tabPageIndex, newTabPageIndex, cancel, action)

Initializes a new instance of the TabControlCancelEventArgs class.

NameTypeDescription
tabPageTabPageThe TabPage the event is occurring for.
tabPageIndexInt32The zero-based index of tabPage in the TabPages collection.
newTabPageIndexInt32The zero-based index of tabPage in the TabPages collection.
cancelBooleantrue to cancel the tab change by default; otherwise, false.
actionTabControlActionOne of the TabControlAction values.

Properties

Instance memberAction

TabControlAction: Returns a value indicating which event is occurring.

Instance memberNewTabPageIndex

Int32: Returns the zero-based index of the TabPage being selected when processing Deselecting otherwise it returns -1.

Instance memberTabPage

TabPage: Returns the TabPage the event is occurring for.

Instance memberTabPageIndex

Int32: Returns the zero-based index of the TabPage being selected when processing Selecting and Selected, or being deselected when processing Deselecting and Deselected.

Used By

NameDescription
TabControlCancelEventHandlerRepresents the method that will handle the Selecting or Deselecting event of a TabControl control.