You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvCustomConnection. WriteStrData method |
Top Previous Next |
Declaration function WriteStrData(FormatData: String; NativeData: String): String;
Category
Description This method writes the contents of a custom String field (of type dtString) 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.
Please see WriteBlobData for type dtMemo data fields.
See also TRvCustomConnection Class, OnGetCols, OnGetRow, other WriteXxxxData methods
Example (Delphi) Connection.WriteStrData( '',CustomerName );
Example (C++Builder) Connection->WriteStrData( "",CustomerName ); |
You are reading help file online using chmlib.com
|