Skip to main content
A newer version of this page is available. .
Tab

TabbedLayoutGroupTabPageSettings.ActivateTabPageAction Property

Gets or sets a value that specifies which action forces a tab to be selected within a group.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(ActivateTabPageAction.Click)]
public ActivateTabPageAction ActivateTabPageAction { get; set; }

Property Value

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).

Property Paths

You can access this nested property as listed below:

Show 14 property paths
Library Object Type Path to ActivateTabPageAction
ASP.NET Controls and MVC Extensions CardViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
GridTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
GridViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
TabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
ASP.NET Bootstrap Controls BootstrapCardViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
BootstrapDialogTabbedFieldGroup
.SettingsTabPages .ActivateTabPageAction
BootstrapDialogTabbedFieldGroup<TViewModel>
.SettingsTabPages .ActivateTabPageAction
BootstrapGridViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
BootstrapTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
ASP.NET MVC Extensions MVCxCardViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
MVCxGridViewTabbedLayoutGroup
.SettingsTabPages .ActivateTabPageAction
MVCxGridViewTabbedLayoutGroup<ModelType>
.SettingsTabPages .ActivateTabPageAction
MVCxTabbedFormLayoutGroup
.SettingsTabPages .ActivateTabPageAction
MVCxTabbedFormLayoutGroup<ModelType>
.SettingsTabPages .ActivateTabPageAction

Remarks

A tab page can be activated within a tabbed group by a specific mouse action such as a mouse click or hovering. Use the ActivateTabPageAction property to specify the precise client mouse action which will activate tabs within a tabbed group.

Note

This property corresponds to the ASPxPageControl.ActivateTabPageAction property of an ASPxPageControl used internally within a tabbed group.

See Also