Note | ||
---|---|---|
| ||
As of July 25th, 2023, there is a content freeze on this page. |
Converts the value of an expression to an integer.
...
Example 2: Zoned -> Packed
Code Block |
---|
pjs.define("z1", { type: 'decimal', length: 9, decimals: 5, initValue: 73.73442 }); pjs.define("p1", { type: 'packed decimal', length: 15, decimals: 5 }); p1 = pjs.parseInt(z1); return p1; //73.00000 |
RPG Equivalent
%INT()