Skip to main content
Tab

PopupWindow.Collapsed Property

Gets or sets a value that specifies whether the window is collapsed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool Collapsed { get; set; }

Property Value

Type Default Description
Boolean false

true if the window is collapsed; otherwise, false.

Remarks

End-users can collapse and expand a window using the collapse button. Use the Collapsed property to specify whether the current popup window is collapsed.

To specify the collapse state of the default popup window, use the ASPxPopupControlBase.Collapsed property.

On the client side, you can control the window collapse state using the ASPxClientPopupControl.GetWindowCollapsed and ASPxClientPopupControl.SetWindowCollapsed methods.

See Also