THotPDF.Destroy Destructor

 

THotPDF.Destroy Destructor

THotPDF

 

Øverst  Forrige  Neste

Destroys an instance of THotPDF.

 

Delphi syntax:

destructor Destroy; override;

 

C++ syntax:

__fastcall virtual ~THotPDF( void );

 

Beskrivelse

Ikke kall Destroy direkte i et program. Kall Free i stedet. Free kontrollerer at THotPDF-objektet ikke er nil før Destroy kalles

 

Kodeeksempel

HPDF := THotPDF.Create( nil );
try
  HPDF.FileName := 'c:\Output.pdf';
  HPDF.BeginDoc;                     // Start PDF document creation
  HPDF.CurrentPage.TextOut( 100, 100, 0, 'Hello World!' );
  HPDF.EndDoc;                       // Finish and save PDF document
finally
  HPDF.Free;
end;

 

See also: Create