ASPxPopupMenu.PopupVerticalAlign Property
Gets or sets a popup menu’s vertical alignment.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(PopupVerticalAlign.NotSet)]
public PopupVerticalAlign PopupVerticalAlign { get; set; }
Property Value
Type | Default | Description |
---|---|---|
PopupVerticalAlign | NotSet | One of the PopupVerticalAlign enumeration values. |
Available values:
Name | Description |
---|---|
NotSet | A popup element is displayed on the y-coordinate of the mouse cursor position. |
Above | A popup element is displayed above the corresponding HTML element so that the y-coordinate of the popup element’s bottom border is equal to the y-coordinate of the HTML element’s top border. |
TopSides | A popup element is displayed so that the y-coordinate of the popup element’s top border equals the y-coordinate of the corresponding HTML element’s top border. |
Middle | A popup element is displayed so that the y-coordinate of the popup element’s center equals the y-coordinate of the corresponding HTML element’s center. |
BottomSides | A popup element is displayed so that the y-coordinate of the popup element’s bottom border equals the y-coordinate of the corresponding HTML element’s bottom border. |
Below | A popup element is displayed below the corresponding HTML element so that the y-coordinate of the popup element’s top border equals the y-coordinate of the HTML element’s bottom border. |
WindowCenter | A popup element is displayed so that it is vertically aligned at the center of the browser’s window. |
Remarks
The popup menu is aligned vertically on the y-coordinate of the mouse cursor position by default. Use the PopupVerticalAlign property to set the menu alignment relative to the corresponding element specified by the ASPxPopupMenu.PopupElementID property, or to display the menu at the center of the browser window.