You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. Aborted property (read only) |
Top Previous Next |
Declaration property Aborted: Boolean;
Category
Description This property will be set to true after a call to Abort has been made.
See also
Example (Delphi) RvNDRWriter1.Execute; if RvNDRWriter1.Aborted then begin StatusFormat := #13 + 'Report Canceled!'; end else begin StatusFormat := #13 + 'Report Completed!'; end; { else } UpdateStatus;
Example (C++Builder) rp1->Execute(); if (rp1->Aborted) { rp1->StatusFormat = "\nReport Canceled!"; } else { rp1->StatusFormat = "\nReport Completed!"; } rp1->UpdateStatus(); |
You are reading help file online using chmlib.com
|