Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Convert the value of a numeric expression to the character external display representation of float.

Example
pjs.define("fl1", { type: 'float', length: 8 });
pjs.define("c1", { type: 'char', length: 40, varying: true });

fl1 = 50000;
c1 = pjs.editFloat(fl1 - 4E4);

return c1; 
//+1.000000000000000E+004

RPG Equivalent 

%EDITFLT()

  • No labels