|
Teken een lijn
Delphi-syntaxis:
procedure LineTo ( X, Y: Single );
C++-syntaxis:
void __fastcall LineTo ( float X, float Y );
Beschrijving
Voeg een recht lijnsegment toe van het huidige punt naar punt X, Y. Het nieuwe huidige punt is X, Y
Codevoorbeeld
program LineExample;
{$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 := '.\Line.pdf'; // Set PDF filename
HPDF.BeginDoc; // Create PDF file
HPDF.CurrentPage.MoveTo ( 20, 20 ); // Move current point to 20, 20
HPDF.CurrentPage.LineTo ( 200, 100 ); // Draw line from current point to 200, 100
HPDF.CurrentPage.Stroke; // and stroke
HPDF.EndDoc; // Close PDF file
finally
HPDF.Free;
end;
end.
|