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

ASPxTabControlBase.ActiveTabTemplate Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

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

Property Value

Type Default Description
ITemplate *null*

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

Remarks

The ActiveTabTemplate property defines a common content for an active tab within a tab control. This property is virtual in the ASPxTabControlBase class and is overridden in the descendants of this class. See the ASPxTabControl.ActiveTabTemplate and ASPxPageControl.ActiveTabTemplate properties for more details.

Note

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

See Also