TabControlEventArgs(TabPage, Int32, TabControlAction) Constructor

Definition

Initializes a new instance of the TabControlEventArgs class.

public:
 TabControlEventArgs(System::Windows::Forms::TabPage ^ tabPage, int tabPageIndex, System::Windows::Forms::TabControlAction action);
public TabControlEventArgs (System.Windows.Forms.TabPage tabPage, int tabPageIndex, System.Windows.Forms.TabControlAction action);
public TabControlEventArgs (System.Windows.Forms.TabPage? tabPage, int tabPageIndex, System.Windows.Forms.TabControlAction action);
new System.Windows.Forms.TabControlEventArgs : System.Windows.Forms.TabPage * int * System.Windows.Forms.TabControlAction -> System.Windows.Forms.TabControlEventArgs
Public Sub New (tabPage As TabPage, tabPageIndex As Integer, action As TabControlAction)

Parameters

tabPage
TabPage

The TabPage the event is occurring for.

tabPageIndex
Int32

The zero-based index of tabPage in the TabPages collection.

action
TabControlAction

One of the TabControlAction values.

Remarks

The property values of the newly created instance are initialized to the specified parameter values.

Applies to

See also