PDFium Component Docs

LineTo Yöntem

Bu API girdisi tanımlayıcıları, imzaları, kod bloklarını ve PDF terimlerini özgün biçiminde korur.
Bileşen: TPdf  ·  Birim: PDFium
Appends a straight line from the current point to (X, Y).

Söz dizimi

procedure LineTo(X, Y: Double)

Açıklama

Appends a straight line from the current point to (X, Y).

Use to build polygons; combine with ClosePath to close them.

Geçerli sayfadaki tüm düzenlemeler PDFiumun bellekteki gösteriminde tamponlanır. Şunu çağırın UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Notlar

Örnek

begin
  if Pdf1.Active then
  begin
    Pdf1.MoveTo(100, 100);
    Pdf1.LineTo(200, 150);
    Pdf1.LineTo(200, 200);
    Pdf1.ClosePath;
    Pdf1.AddPath(clRed, 1.5, clYellow, fmWinding);
    Pdf1.UpdatePage;
  end;
end;

Ayrıca bkz.

MoveTo, BezierTo, ClosePath, AddPath