You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TRvSystem. OnPreviewSetup event (read/write/published) |
Top Previous Next |
Declaration procedure OnPreviewSetup( Sender: TObject );
Category
Description This will allow you to modify the TRvRenderPreview component on a preview form as well as the preview form itself. Some functions, such as ZoomPageWidthFactor will need to be called in the OnPreviewShow event.
NOTE: OnPreviewSetup is called before the form is shown and TRvRenderPreview is started.
See also TRvSystem Class, OnPreviewShow
Example (Delphi) Procedure TForm1.RvSystem1PreviewSetup( Sender: TObject); begin with Sender as TRvRenderPreview do begin ZoomFactor := 50; with Owner as TForm do begin Position := poDesigned; Top := 10; Left := 10; end; { with } end; { with } end;
Example (C++Builder) void __fastcall TForm1::RvSystem1PreviewSetup(TObject *Sender) { TRvRenderPreview* fp = dynamic_cast<TRvRenderPreview*>(Sender); fp->ZoomFactor = 50; TForm* pf = dynamic_cast<TForm*>(fp->Owner); fp->Position = poDesigned; fp->Top = 10; fp->Left = 10; } |
You are reading help file online using chmlib.com
|