NUMBER_OBJECT is a special type of basic element. Its child elements can be used to construct complicated numbers and expressions which can be used in some other elements as numerical values.
NUMBER_OBJECT supports the use of its own child elements as values. For a list of supported child elements please refer to the tree menu on the left.
This example uses the child elements of NUMBER_OBJECT to contruct an expression which equals (_X_ + (_Y_ * 2)) with _X_ and _Y_ being two different variables.
- <ADD>
- <LEFT>_X_</LEFT>
- <RIGHT>
- <MULTIPLY>
- <LEFT>_Y_</LEFT>
- <RIGHT>2</RIGHT>
- </MULTIPLY>
- </RIGHT>
- </ADD>