
Description:
WSDL:
Publisher:
WSDL Functions:
NumberToWords
Call the function NumberToWords passing a number (unsignedLong) as a
parameter. The function will return a string containing the words
equivalent to the number passed.
Example:
string sMyNumber
get NumberToWords 7623 to sMyNumber // sMyNumber will contain "seven
thousand six hundred and twenty three"
NumberToDollars
Call the function NumberToDollars passing a number (decimal) as a
parameter. The function will return a string containing the words
equivalent to the number passed and the words dollars and cents. If
zero is passed to the function, an empty string will be returned.
Example:
string sMyNumber
get NumberToDollars 7623.89 to sMyNumber // sMyNumber will
contain "seven thousand six hundred and twenty three dollars and
eighty nine cents"
Comments