HotPDF Developer Reference
Delphi and C++Builder PDF component help
|
program PieExample; {$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.FileName := 'Curve.pdf'; HPDF.BeginDoc; // Create PDF file HPDF.CurrentPage.DrawPie(10, 10, 110, 110, 50, 10, 10, 50 ); // Draw Pie HPDF.CurrentPage.Fill; // Stroke curve HPDF.EndDoc; // Close PDF file finally HPDF.Free; end; end. |