ListCaption.IsAppended

Syntax

IsAppended: Boolean;

Description

The IsAppended property determines whether a title is added to DOM.

Comments

Use JSON or the setIsAppended method to set the property value and the getIsAppended 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 whether title is added to DOM
cap.getIsAppended()

After executing the example it is obtained whether title is added to DOM.

See also:

ListCaption