You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TMemoBuf. SetData method |
Top Previous Next |
Declaration procedure SetData(var Buffer; BufSize: longint);
Category
Description This method will assign the data in Buffer (for BufSize bytes) to the memo buffer. This can be useful for long strings that are more than 255 characters.
See also
Example (Delphi) // Assign a PChar to a memo buffer MemoBuf.SetData(PCharVar^, StrLen(PCharVar));
Example (C++Builder) |
You are reading help file online using chmlib.com
|