Skip to main content
Tab

ASPxPopupControlBase.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 virtual 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 (dock panel) using the collapse button (dock panel collapse button). Use the Collapsed property to specify whether the default popup window (dock panel) is collapsed.

To specify the collapse state of the particular popup window, use the PopupWindow.Collapsed property.

On the client side, you can control the window collapse state using the ASPxClientPopupControlBase.GetCollapsed and ASPxClientPopupControlBase.SetCollapsed methods.

See Also