Thursday, March 24, 2022

Num2Str - Number to String

 str num2Str(   real number,    int character,    int decimals,    int separator1,    int separator2)


Possible enumeration values for the separator1:

  • 1 – point (.)
  • 2 – comma (,)

Possible values for the separator2 :

  • 0 – no thousands separator
  • 1 – point (.)
  • 2 – comma (,)
  • 3 – space ( )
ParameterDescription
numberThe real number to convert to a string.
characterThe minimum number of characters required in the text.
decimalsThe required number of decimal places.
separator1A DecimalSeparator enumeration value.
separator2A ThousandSeparator enumeration value.

No comments:

Post a Comment

Sample Dialog Syntax - 1

 class AffiliationAutoAssignment extends RunBaseBatch {     // 1. Class Declaration and Pack variables     #define.CurrentVersion(1)     #de...