Return the modulus value
Member of Long Integer Intrinsic Functions (PRIM_LIBI.ILongIntegerIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Integer | Resulting number |
By | *Input | Integer | Value to divide by |
Mod returns the remainder of the variable being divided by the object. The result is an integer.
In this example, if #Subject contained 10 and #Object contained 3, the result would be 1.
#Result := #Subject.Mod(#Object)
Febuary 18 V14SP2