| Format |
| Syntax |
Format(E:OBJECT, N:INT):STRING |
| Description |
| Example |
L := [1,2,3];
M := Format(L,20);
M;
[1, 2, 3]
-------------------------------
Type(L);
LIST
-------------------------------
Type(M);
STRING
-------------------------------
Format(L,2); -- "Format" does not truncate
[1, 2, 3]
-------------------------------
|
| See Also |