Skip to main content
Tab

PopupWindow.MinWidth Property

Gets or sets the minimum width of the window.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Unit String.Empty

A Unit object that defines the minimum width 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 PopupWindow.MinHeight, PopupWindow.MaxHeight, MinWidth, and PopupWindow.MaxWidth properties to specify window size constraints, limiting the window resizing capability of end-users.

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

See Also