Skip to main content

MVCxTab.SetActiveTabTextTemplateContent(Action<TabControlTemplateContainer>) Method

Allows you to create a template used for displaying the text content of the current tab when it’s active.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public void SetActiveTabTextTemplateContent(
    Action<TabControlTemplateContainer> contentMethod
)

Parameters

Name Type Description
contentMethod Action<TabControlTemplateContainer>

A method to which a template content rendering is delegated.

Remarks

Use the SetActiveTabTextTemplateContent method to define the text content for the current tab when it’s in the selected state. The template created using this method replaces the active tab’s text content.

To define a common text content of an active tab in a TabControl, use the extension’s TabControlSettings.SetActiveTabTextTemplateContent method.

Note

Once a template defined using the SetActiveTabTextTemplateContent method is created, it is instantiated within a container object of the TabControlTemplateContainer type. This container object exposes a set of members which can be useful when designing a template.

See Also