Skip to main content
Tab

ASPxRoundPanel.HeaderContentTemplate Property

Gets or sets a template used to display the content of the round panel’s header.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public virtual ITemplate HeaderContentTemplate { get; set; }

Property Value

Type Default Description
ITemplate null

An object that supports the System.Web.UI.ITemplate interface and contains a template used to display the header’s content.

Remarks

Use the HeaderContentTemplate property to control the content of the panel’s header. The template defined using this property replaces the content of the panel header - in particular, the image and text displayed with the header (the close button element remains). To replace the full header area, use the ASPxRoundPanel.HeaderTemplate property.

Note

Once a template defined via the HeaderContentTemplate property is created within a control, it is instantiated within a container object of the RoundPanelHeaderContentTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

See Also