ListCaption.Resizable

Syntax

Resizable: Boolean;

Description

The Resizable property determines whether title can be resized.

Comments

Use JSON or the setResizable method to set the property value and the getResizable method to get the property value and the.

Example

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

// Get title
caps = Tree.getCaptions();
cap = caps.getCaptions()[0];
// Disable title resizing
cap.setResizable(false);

After executing the example it is disabled to resize title.

See also:

ListCaption