TabControlEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the Selected and Deselected events of a TabControl control.
- C#
- VB.NET
public class TabControlEventArgs : EventArgs
Public Class TabControlEventArgs
Inherits EventArgs
Constructors
TabControlEventArgs(tabPage, tabPageIndex, action)
Initializes a new instance of the TabControlEventArgs class.
| Name | Type | Description |
|---|---|---|
| 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. |
Properties
Action
TabControlAction: Returns a value indicating which event is occurring.
TabPage
TabPage: Returns the TabPage the event is occurring for.
TabPageIndex
Int32: Returns the zero-based index of the TabPage in the TabPages collection.
Used By
| Name | Description |
|---|---|
| TabControlEventHandler | Represents the method that will handle the Selected or Deselected event of a TabControl control. |