ListCaptions.EnableResize

Syntax

EnableResize: Boolean;

Description

The EnableResize property determines whether column can be manually resized.

Comments

Use JSON or the setEnableResize method to set the property value, and the getEnableResize method to get the property value.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Get tree titles
caps = Tree.getCaptions();
// Disable manual resizing of columns
caps.setEnableResize(false);

After executing the example manual resizing of columns is disabled.

See also:

ListCaptions