aspnet-devexpress-dot-web-dot-aspxroundpanel-2a18d085.md
Gets or sets a template used to display the content of the round panel’s header.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(null)]
public virtual ITemplate HeaderContentTemplate { get; set; }
<DefaultValue(Nothing)>
Public Overridable Property HeaderContentTemplate As ITemplate
| 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.
|
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