length

Specifies the number of objects in the list.

Note: This property is read only.

Syntax

Reference_Syntax.length

Values

Type

Values

Integer

A valid integer representing the number of objects.

Applies to

list class

Version

XFA 2.5

Examples

JavaScript

// Display the number of child nodes under root node. 
xfa.host.messageBox("Number of nodes under rootNode after appending clone: " + xfa.record.nodes.length);

FormCalc

// Display the number of child nodes under root node. 
xfa.host.messageBox("Number of nodes under rootNode after appending clone: " + xfa.record.nodes.length)

// Ethnio survey code removed