Skip to main content

RoundPanelSettings.Collapsed Property

Gets or sets a value that specifies whether the 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 panel is collapsed; otherwise, false.

Remarks

Use the Collapsed property to specify whether the panel is collapsed at the first page load.

End-users can collapse and expand a panel using the collapse button or clicking the panel header provided the RoundPanelSettings.AllowCollapsingByHeaderClick property is set to true.

Note that panel collapse is allowed in the standard view only (the RoundPanelSettings.View property is set to Standard).

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

See Also