You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TMemoBuf. Empty method |
Top Previous Next |
Declaration function Empty: Boolean;
Category
Description This method will return true if the memo buffer does not have anything in it or if the current position, Pos, is beyond the end of the buffer.
See also
Example (Delphi) if not MemoBuf1.Empty then begin PrintMemo(MemoBuf1,0,false); end; { if }
Example (C++Builder) if (!MemoBuf1->Empty()) { rp1->PrintMemo(MemoBuf1,0,false); }/ if |
You are reading help file online using chmlib.com
|