Skip to main content
Tab

PopupWindow.MinHeight Property

Gets or sets the minimum height of the window.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(Unit), "")]
public virtual Unit MinHeight { get; set; }

Property Value

Type Default Description
Unit String.Empty

A Unit object that defines the minimum height of the window.

Remarks

If window resizing is allowed (the ASPxPopupControlBase.AllowResize property is set to true) end-users can change a window’s size. You can use the MinHeight, PopupWindow.MaxHeight, PopupWindow.MinWidth, and PopupWindow.MaxWidth properties to specify window size constraints, limiting the window resizing capability of end-users.

Use the MinHeight property to specify the minimum height to which an end-user can resize the window. To apply the specific minimum height to all windows within an ASPxPopupControl use the ASPxPopupControlBase.MinHeight property.

See Also