procedure MoveTo(X, Y: Double)
Starts a new sub-path at the given page coordinate.
Begin every closed shape with MoveTo before issuing LineTo / BezierTo / ClosePath.
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.
Pdf1.Active bu ilkel çağrıları yapmadan önce True olmalı ve bir sayfa seçili olmalıdır.
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;