HotPDF Developer Reference
Delphi and C++Builder PDF component help
|
program PDFInfo; {$APPTYPE CONSOLE} uses SysUtils, Graphics, Classes, HPDFDoc;
var HPDF: THotPDF;
begin HPDF:= THotPDF.Create(nil); try HPDF.AutoLaunch := true; // PDF file will be shown automatically HPDF.ShowInfo := true; // Include information into document HPDF.FileName := 'Hello world.pdf'; HPDF.Author := 'http://www.loslab.com/'; // Set information about author HPDF.Subject := 'HotPDF console information demo'; // Set document subject HPDF.Title := 'Information Demo'; // Set document title HPDF.BeginDoc; // Create PDF file HPDF.CurrentPage.TextOut(10, 10, 0, 'Information Demo'); // Print text HPDF.EndDoc; // Close PDF file finally HPDF.Free; end; end. |