Skip to main content
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.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
DefaultBoolean Default

One of the enumeration values.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

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