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

ASPxSplitter.ResizingMode Property

Gets or sets a value that specifies how panes visually respond to resizing operations.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(ResizingMode.Postponed)]
public ResizingMode ResizingMode { get; set; }

Property Value

Type Default Description
ResizingMode **Postponed**

A ResizingMode enumeration value that specifies when the pane being resized should be redrawn.

Available values:

Name Description
Postponed

An element is redrawn after the resizing operation is finished.

Live

An element is redrawn dynamically during the resizing operation.

Remarks

You can allow end-users to resize all panes or individual ones by setting the ASPxSplitter control’s ASPxSplitter.AllowResize or a pane’s SplitterPane.AllowResize property to true.

Use the ResizingMode property to control whether a pane is redrawn dynamically during the resizing operation (the ResizingMode.Live value), or the pane is redrawn after the resizing operation is finished (the ResizingMode.Postponed value).

See Also