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

PopupControlSettingsBase.Left Property

Gets or sets the x-coordinate of the element left side.

Namespace: DevExpress.Web.Mvc

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

Declaration

public int Left { get; set; }

Property Value

Type Description
Int32

An integer value specifying the x-coordinate.

Remarks

The Left property allows you to specify a value that represents the x-coordinate of the default popup window’s (or a dock panel’s) left side. To completely define the position, you must specify a value for this property and for the PopupControlSettingsBase.Top property. The element can be displayed at the specified position, if the PopupControlSettingsBase.ShowOnPageLoad property is set to true or the client ASPxClientPopupControlBase.Show method is called.

Note

For PopupControl:

The Left property is not in effect for the default popup window if the PopupElementID property is specified (via the PopupControlSettings.PopupElementID or PopupWindow.PopupElementID property).

See Also