2020.2

Table Of Contents
Returns:
Returns an integer indicating the selected state of the node. If the node and all of its parents are
selected, the method returns ssTrue (2). If the node is selected but one of its parents is not, the
return value is ssDisabled (1). If the node is not selected, the return value is ssFalse (0).
Return value State
0 False: The node is not selected.
1 Disabled: The node is selected but one of its parents is not.
2 True: The node and all of its parents are selected.
Note
In an Active Script environment, such as the Run Script task, the return value is a
numerical value.
However, in environments where the Selected State type is defined, the types are
ssFalse (= 0), ssDisabled (= 1), and ssTrue (= 2).
Methods
Add(Integer Index)
Not available in MetaPage
Adds a new Node as a child of the current node.
Parameters:
Index
Specifies where in the child list to add the node. The node is inserted before the node at the
specified index. In other words, the node being inserted becomes the node found at Index. To
add a node at the start of the collection, use 0. To add it at the end, use Node.Count.
Returns:
Reference to the Node that was added.
Page 221