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

SplitterPane.AllowResize Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean AllowResize { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

One of the DefaultBoolean enumeration values.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

The AllowResize property controls whether a pane can be resized by end-users on client side. This property is coupled with the ASPxSplitter.ResizingMode and the ASPxSplitter.PaneMinSize (SplitterPane.MinSize) property settings.

Initial pane size can be specified by the SplitterPane.Size property. To specify the ability to resize all splitter panes, use the pane’s ASPxSplitter.AllowResize property.

On the client side, you can use the ASPxClientSplitterPane.SetAllowResize method to control whether an individual pane can be resized by end-users.

See Also