You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvProject. Active (TRvProject) property (read/write) |
Top Previous Next |
Declaration property Active: Boolean;
Default false
Category
Description You can change or retrieve the active state of a report project with this property. Setting Active to true is the same as calling the Open method while setting Active to false is the same as calling the Close method.
See also TRvProject Class, Close, OnAfterClose, OnAfterOpen, OnBeforeClose, OnBeforeOpen, Open
Example (Delphi) // Same as RaveProject1.Open; RvProject1.Active := True; { Same as RvProject1.Open; }
Example (C++Builder) RvProject1->Active = true; |
You are reading help file online using chmlib.com
|