PDFium Component Docs

MoveTo 메서드

이 API 항목은 식별자, 시그니처, 코드 블록, PDF 용어를 원래 형태로 유지합니다.
컴포넌트: TPdf  ·  유닛: PDFium
Starts a new sub-path at the given page coordinate.

구문

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.

All edits to the current page are buffered in PDFium's in-memory representation. Call UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

비고

예제

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;

참고 항목

LineTo, BezierTo, ClosePath, AddPath