Skip to main content
Tab

SplitterPane.Collapsed Property

Gets or sets a value specifying whether a splitter pane 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 a pane is collapsed, otherwise false.

Remarks

Use the Collapsed property to specify a splitter pane’s collapsed state on the server side. The ASPxClientSplitterPane.IsCollapsed method is useful to obtain a pane’s collapsed state on the client.

To collapse or expand a pane on the client side, use the ASPxClientSplitterPane.Collapse or ASPxClientSplitterPane.Expand methods.

See Also