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

TabBase.ActiveTabTemplate Property

Gets or sets a template used for displaying the content of the current tab when it’s active.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.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 the content for an individual tab when the tab is active. This property is virtual in the TabBase class and is overridden in the descendants of this class. See the Tab.ActiveTabTemplate and TabPage.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