InsertDynChildLeaf method: Node class
Syntax
InsertDynChildLeaf()
Description
The InsertDynChildLeaf method inserts a dynamic leaf under the node object executing the method.
A leaf object associated with the new leaf is returned.
The new leaf is inserted as the child of the current node, although there is no explicit ordering of leaves.
Note:
To insert a leaf with a specific range, use the InsertChildLeaf method.
Parameters
None.
Returns
A leaf object associated with the new leaf. If this method fails, it returns either False or a Null object reference, depending upon the type of error encountered. The best way to test whether the object was inserted is to test the result using either the All or None functions.
Example
&NEWLEAF = &MYLNODE.InsertDynChildLeaf();
If None(&NEWLEAF) Then
/* Do error processing */
End-If;