fastreport中的towordin()函数
时间: 2024-03-30 07:34:53 浏览: 41
FastReport中文手册
towordin()函数是FastReport报表设计器中的一个函数,用于将数字转换为对应的英文单词表示。例如,towordin(123.45)会返回"One Hundred Twenty Three and 45/100",表示123.45这个数字的英文表示。
该函数的语法如下:
towordin(Number: Extended; FractionDigits: Byte; PositiveCurrency: Boolean; NegativeCurrency: Boolean): String;
其中,Number为要转换的数字,FractionDigits为小数点后保留的位数,PositiveCurrency和NegativeCurrency分别表示正数和负数的货币符号。该函数返回转换后的英文单词表示的字符串。
阅读全文