Skip to main content

PopupControlSettingsBase.Collapsed Property

Gets or sets a value that specifies whether the window (dock panel) is collapsed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public bool Collapsed { get; set; }

Property Value

Type Description
Boolean

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’s collapse state using the ASPxClientPopupControlBase.GetCollapsed and ASPxClientPopupControlBase.SetCollapsed methods.

See Also