AllChildNodeCount property: Node class
Description
This property returns the number of child nodes of the node, that is, all the nodes below this node.
To determine all the leaves below a node, subtract the AllChildNodeCount from the AllChildCount
This property is read-only.
Example
To determine all the leaves below a node, use the AllChildNodeCount with the AllChildCount property.
&AllCount = (&MyNode.AllChildCount - &MyNode.AllChildNodeCount);