ListCaption.MinWidth

Syntax

MinWidth: Number;

Description

The MinWidth property determines minimum title width.

Comments

Use JSON or the setMinWidth method to set the property value and the getMinWidth 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 title
caps = Tree.getCaptions();
cap = caps.getCaptions()[0];
// Set minimum width
cap.setMinWidth(200);

After executing the example minimum title width is set.

See also:

ListCaption