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

PopupHorizontalAlign Enum

Specifies a popup element’s horizontal alignment.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public enum PopupHorizontalAlign

Members

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.

Remarks

The PopupHorizontalAlign enumerator contains values that specify the horizontal alignment of a popup element (a popup menu or popup window) relative to the corresponding web control or HTML element specified by the PopupElementID property (a popup menu’s ASPxPopupMenu.PopupElementID, a popup control’s ASPxPopupControl.PopupElementID or a popup window’s PopupWindow.PopupElementID). The values of this enumerator are used to set the PopupHorizontalAlign property (the ASPxPopupMenu.PopupHorizontalAlign or ASPxPopupControl.PopupHorizontalAlign).

See Also