Skip to main content

SplitterSettings.AllowResize Property

Gets or sets a value that specifies whether the Splitter’s panes can be resized by end-users on the client side.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public bool AllowResize { get; set; }

Property Value

Type Description
Boolean

true if resizing splitter panes is allowed; otherwise, false.

Remarks

This property is coupled with the SplitterSettings.ResizingMode and the SplitterSettings.PaneMinSize property settings.

Initial pane size can be specified by the SplitterPane.Size property. To specify the capability to resize a pane, use the pane’s SplitterPane.AllowResize property.

On the client side, you can use the ASPxClientSplitter.SetAllowResize and ASPxClientSplitterPane.SetAllowResize methods, to control the capability to resize a pane.

See Also