IsBranched property: Tree class
Description
This property indicates whether the tree is branched. Possible values for this property are True and False: True if the tree is branched, False if it isn’t.
This property can be used only with an open tree, that is, you must open the tree using the Open method before you can use this property.
This property is read-only.
Example
If &MyTree.IsBranched Then
/* Do branched processing */
Else
/*Do unbranched processing */
End-If;