 |
ALPHA-VISION® Jobs: AbGetChildNode
|
AbGetChildNode
SUMMARY
GetChildNode - Gets the childnode of a given listnode.
SYNTAX
GetChildNode(
<listnode, childname>);
ARGUMENTS
- listnode (type:any)
-
Name of the listnode.
- childname (type:string)
-
Name of the child.
DESCRIPTION
Stack
- Missing arguments are taken from the stack.(and removed from there).
- The result is pushed on top of the stack.
Effect
The Job gets the childnode with the name "childname" of the given listnode.
EXAMPLES
//Stack before is empty:
GetChildNode(BDC.ActDamage)
// Stack afterwards (1 Element)
// "Rooms" (node with the name Rooms)
Syntax Notation
- [aaa]
- aaa is optional (zero or one occurences)
- (aaa|bbb)
- aaa exclusive or bbb
- (aaa)*
- aaa may occur indefinitely often or may be omitted
- (aaa)+
- aaa may occur indefinitely often but at least once
- (aaa)m..n
- aaa may occur from m to n times