aspnet-devexpress-dot-web-dot-aspxtabcontrol-b08a1b7e.md
Gets or sets a value that specifies which action forces a tab to be selected
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(ActivateTabPageAction.Click)]
public ActivateTabPageAction ActivateTabAction { get; set; }
<DefaultValue(ActivateTabPageAction.Click)>
Public Property ActivateTabAction As ActivateTabPageAction
| Type | Default | Description |
|---|---|---|
| ActivateTabPageAction | Click |
One of the ActivateTabPageAction enumeration values.
|
Available values:
| Name | Description |
|---|---|
| Click |
A tab is activated by a mouse click (when a user releases the pressed button).
| | MouseOver |
A tab is activated by mouse hovering.
| | MouseDown |
A tab is activated by a mouse down (when a user press the button).
|
A tab can be activated in a tab control by a specific mouse action such as a mouse click, hovering, or mouse down. Use the ActivateTabAction property to specify the precise client mouse action which will activate tabs within a tab control.
See Also