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

ASPxGridViewCustomizationWindowSettings.PopupHorizontalAlign Property

OBSOLETE

Use the SettingsPopup.CustomizationWindow.HorizontalAlign property instead.

Gets or sets the Customization Window‘s horizontal position relative to the ASPxGridView’s borders.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(PopupHorizontalAlign.RightSides)]
[Obsolete("Use the SettingsPopup.CustomizationWindow.HorizontalAlign property instead.")]
public PopupHorizontalAlign PopupHorizontalAlign { get; set; }

Property Value

Type Default Description
PopupHorizontalAlign **RightSides**

A PopupHorizontalAlign enumeration value that specifies the Customization Window’s horizontal position.

Available values:

Name Description
NotSet

A popup element is displayed on the x-coordinate of the mouse cursor position.

PopupHorizontalAlign_None.png

OutsideLeft

A popup element is displayed to the left of the corresponding HTML element, so that the x-coordinate of the popup element’s right border is equal to the x-coordinate of the HTML element’s left border.

PopupHorizontalAlign_OutsideLeft.png

LeftSides

A popup element is displayed so that its left border’s x-coordinate equals the x-coordinate of the corresponding HTML element’s left border.

PopupHorizontalAlign_LeftSides.png

Center

A popup element is displayed so that the x-coordinate of the popup element’s center equals the x-coordinate of the corresponding HTML element’s center.

PopupHorizontalAlign_Center.png

RightSides

A popup element is displayed so that the x-coordinate of the popup element’s right border equals the x-coordinate of the corresponding HTML element’s right border.

PopupHorizontalAlign_RightSides.png

OutsideRight

A popup element is displayed to the right of the corresponding HTML element so that the x-coordinate of the popup element’s left border is equal to the x-coordinate of the HTML element’s right border.

PopupHorizontalAlign_OutsideRight.png

WindowCenter

A popup element is displayed so that it is horizontally aligned at the center of the browser’s window.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to PopupHorizontalAlign
ASP.NET Controls and MVC Extensions GridViewProperties
.SettingsCustomizationWindow .PopupHorizontalAlign
ASP.NET MVC Extensions MVCxGridViewProperties
.SettingsCustomizationWindow .PopupHorizontalAlign

Remarks

To specify the Customization Window’s vertical position, use the ASPxGridViewCustomizationWindowSettings.PopupVerticalAlign property.

See Also