Skip to main content
Tab

TabPage.TabTextTemplate Property

Gets or sets a template used to display the content of the current page’s tab text.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public override ITemplate TabTextTemplate { 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 TabTextTemplate property to define the page content for the current tab text. The template created using this property replaces the content of an individual tab text.

To define the common content for all tab text in a page control, use the control’s ASPxPageControl.TabTextTemplate property.

Note

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

See Also