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

ASPxPopupControlBase.Text Property

Gets or sets the text displayed within a window’s content region.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value that specifies a window’s content text.

Remarks

Use the Text property to specify the text displayed within the window’s content region. The position of the content text is specified by the AppearanceStyleBase.HorizontalAlign and AppearanceStyleBase.VerticalAlign properties available via the PopupControlStyles.Content property.

Note that the default window’s content text set via the Text property is displayed even if the window’s ASPxPopupControlBase.Controls collection is not empty.

Note

For ASPxPopupControl only:

If the ASPxPopupControl.Windows collection is not empty, the Text property is not in effect and cannot be used to specify a common content text for all popup windows. In this case, each window’s PopupWindow.Text property should be set to a specific individual value, which typically can be taken from the bound data source.

See Also