NeedForTrade Documentation |
|
Function Types
There are several types of Functions that differ by return type:
- DoubleFunction - returns Double value.
- BooleanFunction - returns Boolean value.
- IntegerFunction - return Integer value.
- VoidFunction - has no return value.
Functions that have reurn value must return it using Value keyword.
Sample:
Value = 10;
See also Functions.