program RoundRect;

{$APPTYPE CONSOLE}

uses

   SysUtils, Graphics, Classes, HPDFDoc;

 

var

   HPDF: THotPDF;

 

const

   DashArray: array[0..3] of Byte = (6, 4, 2, 4);

 

begin

   HPDF := THotPDF.Create(nil);

   try

       HPDF.AutoLaunch := true;                 // PDF file will be shown automatically

       HPDF.FileName := 'RoundRect.pdf'; 

       HPDF.BeginDoc;                               // Create PDF file

 

       HPDF.CurrentPage.SetDash( DashArray, 0 );                    // Set  - . -  dash pattern

       HPDF.CurrentPage.RoundRect( 10, 10, 200, 100, 20, 20 ); // Draw round rect

       HPDF.CurrentPage.Stroke;                                             // and stroke

 

       HPDF.EndDoc;                        // Close PDF file

   finally

       HPDF.Free;

   end;

end.