You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. AllowAll method |
Top Previous Next |
Declaration procedure AllowAll;
Category
Description This method will reset the valid destinations to all after they have been modified by AllowPreviewOnly or AllowPrinterOnly.
See also TBaseReport Class, AllowPreviewOnly, AllowPrinterOnly
Example (Delphi) // Draw a line on the preview screen only AllowPreviewOnly; MoveTo(1.5,1.5); LineTo(6.5,1.5); AllowAll;
Example (C++Builder) rp1->AllowPreviewOnly(); rp1->MoveTo(1.5,1.5); rp1->LineTo(6.5,1.5); rp1->AllowAll(); |
You are reading help file online using chmlib.com
|