Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

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.

See Also