You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvCustomConnection. WriteBoolData method |
Top Previous Next |
Declaration function WriteBoolData(FormatData: String; NativeData: Boolean): String;
Category
Description This method writes the contents of a custom Boolean field (of type dtBoolean) 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. The FormatData parameter defines the formatted value of the field, but can be blank if no pre-formatted output is needed. The NativeData parameter should contain the unmodified contents of the field.
See also TRvCustomConnection Class, OnGetCols, OnGetRow, other WriteXxxxData methods
Example (Delphi) Connection.WriteBoolData( '',CustomerActive );
Example (C++Builder) Connection->WriteBoolData( "",CustomerActive ); |
You are reading help file online using chmlib.com
|