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

PopupControlSettingsBase.Text Property

Gets or sets the text displayed within a popup window’s (or a dock panel’s) content region.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public string Text { get; set; }

Property Value

Type Description
String

A string value that specifies a content text.

Remarks

Use the Text property to specify the text displayed within the default popup window’s (or a dock panel’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

For PopupControl only:

If the PopupControlSettings.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 Text property (PopupWindow.Text) should be set to a specific individual value, which typically can be taken from the bound data source.

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

See Also