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

TabControlSettings.SetActiveTabTextTemplateContent(Action<TabControlTemplateContainer>) Method

Allows you to create a common template used for displaying the text content of an active tab within the current TabControl.

Namespace: DevExpress.Web.Mvc

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

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 common text content for the current TabControl’s active tab. The template created using this method replaces the active tab’s text.

To define the text content of a particular tab in the active state, use the tab’s MVCxTab.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