Skip to main content
A newer version of this page is available. .
Tab

PopupWindow.HeaderText Property

Gets or sets the text content of the window’s header.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("")]
public string HeaderText { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies the window’s header text.

Remarks

Use the HeaderText property to specify the text displayed within the window’s header. The position of the text within the header is specified by the AppearanceStyleBase.HorizontalAlign and AppearanceStyleBase.VerticalAlign properties available via the window’s PopupWindow.HeaderStyle property.

If a specific navigation location is assigned for a window’s header (via either the ASPxPopupControlBase.HeaderNavigateUrl or PopupWindow.HeaderNavigateUrl property), the window’s header text set by the HeaderText property servers as a link. It’s underlined and a click on it navigates the application to the specified location.

Note

The value assigned to the HeaderText property of a popup window overrides the value set for the popup control’s ASPxPopupControlBase.HeaderText property (if any) which specifies a common header text for all popup windows from the ASPxPopupControl.Windows collection.

See Also