Long Integer Intrinsic Functions - Div Method
Returns the integer quotient of a division
Member of Long Integer Intrinsic Functions (PRIM_LIBI.ILongIntegerIntrinsics)
Parameters
Name |
Type |
Data Type |
Description |
Result |
*Result (Optional) |
Integer |
Resulting number |
By |
*Input |
Integer |
Value to divide by |
Details
Div returns the number of times that a number divides into the subject variable completely.
The result is an integer.
Example
In this example, if #Subject contained 10 and #Object contained 3, the result would be 3.
#Result := #Subject.Div(#Object)