PDFiumVCL Docs

ImportPages method

Dieser API-Eintrag behält Bezeichner, Signaturen, Codeblöcke und PDF-Begriffe in ihrer Originalform.
Component: TPdf  ·  Unit: PDFium
Copies one or more pages from another open TPdf into this document.

Syntax

function ImportPages(const Source: TPdf; const Range: WString = ''): Boolean

Description

Copies one or more pages from another open TPdf into this document.

Pass an empty Range to import every page; pass "1-3,5" for a custom subset.

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.

Remarks

Example

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;

See Also

AddPage, DeletePage, ImportPreferences