You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvCustomConnection. WriteDateTime method |
Top Previous Next |
Declaration function WriteDateTime(FormatData: String; NativeData: TDateTime);
Category
Description This method writes the contents of a custom DateTime field (of type dtDate / dtTime / dtDateTime) 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.WriteDateTime( '',Now );
Example (C++Builder) Connection->WriteDateTime( "",Now ); |
You are reading help file online using chmlib.com
|