Skip to main content
Tab

TabBase.Enabled Property

Gets or sets a value that indicates whether the current tab is enabled, allowing the tab to respond to end-user interactions.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool Enabled { get; set; }

Property Value

Type Default Description
Boolean true

true if the tab is enabled; otherwise, false.

Remarks

When this property is set to false, the tab doesn’t respond to end-user interactions, such as mouse hovering or clicks.

Note

If a tab is disabled on the server by setting the Enabled property to false, this tab can’t be enabled on the client by using the client ASPxClientTab.SetEnabled method.

See Also