Unit NumToText
Uses Classes, Interfaces, Objects and Records Types Constants Variables
Description
NumToText unit contains functions for converting of numeric value to text in Czech or English language. It is used by RTFReport and XMLReport component but can be used also independently.
Overview
Functions and Procedures
function NumToTextEN(Value: double; Separator: string = ''; Currency: string = ''; SubCurrency: string = ''): string; |
function NumToTextCZ(Value: double; Separator: string = ''; Currency: string = ''; SubCurrency: string = ''): string; |
Description
Functions and Procedures
function NumToTextEN(Value: double; Separator: string = ''; Currency: string = ''; SubCurrency: string = ''): string; |
Convert numeric value to English text Parameter Separator defines separator between words; Parameter Currency defines name of currency; '' = without currency, 'short' = dollars, 'long' = dollars Parameter SubCurrency defines name of SubCurrency; '' = cents
|
function NumToTextCZ(Value: double; Separator: string = ''; Currency: string = ''; SubCurrency: string = ''): string; |
Convert numeric value to Czech text Parameter Separator defines separator between words; Parameter Currency defines name of currency; '' = without currency, 'short' = korun, 'long' = korun ceskych Parameter SubCurrency defines name of SubCurrency; '' = haleru
|
Author
Created
Sep 2006
Last Modified
Apr 2014
Generated by PasDoc 0.15.0.
|