Skip to main content

MVCxTabPage.SetTabTextTemplateContent(Action<PageControlTemplateContainer>) Method

Allows you to create a template used to display the content of the current page’s tab text.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public void SetTabTextTemplateContent(
    Action<PageControlTemplateContainer> contentMethod
)

Parameters

Name Type Description
contentMethod Action<PageControlTemplateContainer>

A method to which a template content rendering is delegated.

Remarks

Use the SetTabTextTemplateContent method to define the page’s content for the current tab text. The template created using this method replaces the content of an individual tab text.

To define the common content for all tab text in a PageControl, use the extension’s PageControlSettings.SetTabTextTemplateContent method.

Note

Once a template defined using the SetTabTextTemplateContent 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