You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvCustomConnection. WriteCurrData method |
Top Previous Next |
Declaration function WriteCurrData(FormatData: String; NativeData: Currency): String;
Category
Description This method writes the contents of a custom Currency field (of type dtFloat) inside of the OnGetRow event of a data connection component. The data for custom fields must be written in the same order as the fields were defined in the OnGetCols event. FormatData parameter defines the formatted value of the field, but can be blank if no pre-formatted output is needed. NativeData parameter should contain the unmodified contents of the field
See also TRvCustomConnection Class, OnGetCols, OnGetRow, other WriteXxxxData methods
Example (Delphi) Connection.WriteCurrData( '',InvoiceAmount );
Example (C++Builder) Connection->WriteCurrData( "",InvoiceAmount ); |
You are reading help file online using chmlib.com
|