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

GridFilterControlPopupSettings.VerticalAlign Property

Gets or sets the filter control‘s vertical alignment.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(PopupVerticalAlign.Middle)]
public PopupVerticalAlign VerticalAlign { get; set; }

Property Value

Type Default Description
PopupVerticalAlign **Middle**

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.

PopupVerticalAlign_None.png

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.

PopupVerticalAlign_Above.png

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.

PopupVerticalAlign_TopSides.png

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.

PopupVerticalAlign_Middle.png

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.

PopupVerticalAlign_BottomSides.png

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.

PopupVerticalAlign_Below.png

WindowCenter

A popup element is displayed so that it is vertically 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 VerticalAlign
ASP.NET Bootstrap Controls BootstrapCardViewPopupControlSettings
.FilterControl.VerticalAlign
BootstrapGridViewPopupControlSettings
.FilterControl.VerticalAlign
ASP.NET Web Forms Controls ASPxCardViewPopupControlSettings
.FilterControl.VerticalAlign
ASPxGridViewPopupControlSettings
.FilterControl.VerticalAlign
TreeListPopupControlSettings
.FilterControl.VerticalAlign
ASPxVerticalGridPopupControlSettings
.FilterControl.VerticalAlign
MVCxGridViewPopupControlSettings
.FilterControl.VerticalAlign
MVCxTreeListPopupControlSettings
.FilterControl.VerticalAlign

Remarks

Use the GridFilterControlPopupSettings.HorizontalAlign and VerticalAlign properties to specify the horizontal an vertical alignment of the filter control, respectively.

See Also