THPDFPage.Stroke

THPDFPage

Arriba  Anterior  Siguiente

Strokes current path.

 

Sintaxis Delphi:

procedure Stroke;

 

Sintaxis C++:

void __fastcall Stroke ( void );

 

Descripción

Stroke the path.

 

Ejemplo de código

program StrokeExample;
{$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 := '\Circle.pdf';                         // Set PDF filename
        HPDF.BeginDoc;                                               // Create PDF file
        HPDF.CurrentPage.Circle( 200, 200, 100 );          // Draw circle
        HPDF.CurrentPage.Stroke;                                 // and stroke
        HPDF.EndDoc;                                                  // Close PDF file
    finally
        HPDF.Free;
    end;
end.