Skip to main content

PageControlSettings.SetActiveTabTextTemplateContent(Action<PageControlTemplateContainer>) Method

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

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public void SetActiveTabTextTemplateContent(
    Action<PageControlTemplateContainer> contentMethod
)

Parameters

Name Type Description
contentMethod Action<PageControlTemplateContainer>

A method to which a template content rendering is delegated.

Remarks

Use the SetActiveTabTextTemplateContent method to define the common text content for the current PageControl’s active tab. The template created using this method replaces the active tab’s text.

To define the tab content of a particular tabbed page in the active state, use the page’s MVCxTabPage.SetActiveTabTextTemplateContent method.

Note

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

See Also