Skip to main content
Tab

ASPxTabControlBase.ActiveTabTextTemplate Property

Gets or sets a common template used for displaying the text content of an active tab within the current tab control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public virtual ITemplate ActiveTabTextTemplate { get; set; }

Property Value

Type Default Description
ITemplate null

An object supporting the System.Web.UI.ITemplate interface which contains the template.

Remarks

Use the ActiveTabTextTemplate property to define a common text content for the current tab control’s active tab. The template created using this property replaces the active tab’s text.

To define the text content of a particular tab in the active state, use the tab’s Tab.ActiveTabTextTemplate property.

Note

Once a template defined via the ActiveTabTextTemplate property is created within a tab control, it is instantiated within a container object of the TabControlTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

See Also