Skip to main content

MVCxRibbonTemplateItem.SetContent(Action<RibbonTemplateItemControl>) Method

Allows you to custom render the Ribbon’s template item content.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public void SetContent(
    Action<RibbonTemplateItemControl> contentMethod
)

Parameters

Name Type Description
contentMethod Action<DevExpress.Web.Internal.RibbonTemplateItemControl>

A method to which a template content rendering is delegated.

Remarks

Note

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

View Example: Round Panel for ASP.NET MVC - How to define control content

See Also