IsWholeTree property: Tree class

Description

This property indicates whether the entire tree is accessible. This property is set to True if a tree was opened using OpenWholeTree method. The OpenWholeTree method opens a tree in read-only mode without paying attention to the existing tree branches.

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.IsWholeTree Then 
   /* Do processing */ 
Else 
   /* close tree and reopen using OpenWholeTree method */ 
End-If;