Skip to main content
A newer version of this page is available. .
Tab

ASPxSplitter.AllowResize Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue(true)]
public bool AllowResize { get; set; }

Property Value

Type Default Description
Boolean **true**

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

Remarks

The AllowResize property controls whether an ASPxSplitter‘s panes can be resized by end-users on the client side. This property is coupled with the ASPxSplitter.ResizingMode and the ASPxSplitter.PaneMinSize property settings.

Initial pane size can be specified by the SplitterPane.Size property. To specify an individual pane’s resizing ability, use the pane’s SplitterPane.AllowResize property.

On the client side, you can use the ASPxClientSplitter.SetAllowResize and ASPxClientSplitterPane.SetAllowResize methods, to control the pane resizing availability.

See Also