Vcl.Dialogs.TPageSetupDialog.OnDrawFullPage

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDrawFullPage: TPaintPageEvent read FOnDrawFullPage write FOnDrawFullPage;

C++

__property TPaintPageEvent OnDrawFullPage = {read=FOnDrawFullPage, write=FOnDrawFullPage};

Properties

Type Visibility Source Unit Parent
event published
Vcl.Dialogs.pas
Vcl.Dialogs.hpp
Vcl.Dialogs TPageSetupDialog

Description

Occurs before any page drawing.

Write an OnDrawFullPage event handler to customize the way the entire page is drawn. The PageRect parameter indicates the boundaries of the page.

If the handler sets the DoneDrawing parameter to true, all default page drawing is suppressed and none of the subsequent event handlers (OnDrawMinMargin, OnDrawMargin, OnDrawGreekText, OnDrawEnvStamp, and OnDrawRetAddress) are called. All drawing of the sample page is done by the OnDrawFullPage event handler.

See Also