|
Desenează o linie
Sintaxă Delphi:
procedure LineTo ( X, Y: Single );
Sintaxă C++:
void __fastcall LineTo ( float X, float Y );
Descriere
Adaugă un segment de linie dreaptă de la punctul curent la punctul X, Y; noul punct curent devine X, Y
Exemplu de cod
program LineExemplu;
{$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.
|