 |
ALPHA-VISION® Jobs: AbGetListCount
|
AbGetListCount
SUMMARY
GetListCount - Gets the number of children of the given listnode.
SYNTAX
GetListCount(
<listnode>);
ARGUMENTS
- listnode (type:any)
-
Name of the listnode.
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 number of children of the given listnode.
EXAMPLES
//Stack before is empty:
GetListCount(BDC.ActDamage.Rooms)
// Stack afterwards (1 Element)
// "3" (Number of 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