Skip to main content
A newer version of this page is available.
All docs
V20.2

DxPopup.HeaderText Property

Specifies text for a pop-up window’s header.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string HeaderText { get; set; }

Property Value

Type Description
String

A string object that specifies the header’s text.

Remarks

Use the HeaderText property to specify text displayed in the pop-up window’s header.

<DxPopup HeaderText="Header">
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sit amet metus vel nisi blandit tincidunt vel efficitur purus. 
      Nunc nec turpis tempus, accumsan orci auctor, imperdiet mauris. Fusce id purus magna.</p>
</DxPopup>

Blazor Popup

Use the HeaderTemplate property to customize a pop-up window’s header. To hide the header, set the ShowHeader property to false.

Run Demo: Popup - Overview

Run Demo: Popup - Header Customization

See Also