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

TreeListSettingsResizing.Visualization Property

Gets or sets a value that determines how the column resize process is visually indicated.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ResizingMode **Live**

A ResizingMode enumeration value.

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.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to Visualization
ASP.NET Controls and MVC Extensions ASPxTreeList
.SettingsResizing .Visualization
ASP.NET MVC Extensions MVCxTreeList
.SettingsResizing .Visualization
TreeListSettings
.SettingsResizing .Visualization
TreeListSettings<RowType>
.SettingsResizing .Visualization

Remarks

In the postponed resizing mode, the resizing process is indicated by a frame, and a grid column is redrawn after the resizing operation is finished.

ASPxTreeList-PostponeColumnResizing

In the live resizing mode, a grid column is redrawn dynamically during the resizing operation.

ASPxTreeList-LiveColumnResizing

See Also