PDFiumVCL 文档

DeleteAttachment method

此 API 条目保留标识符、签名、代码块和 PDF 术语的原始形式。
Component: TPdf  ·  Unit: PDFium
Removes the embedded file attachment at the given index.

Syntax

procedure DeleteAttachment(Index: Integer)

Description

Removes the embedded file attachment at the given index.

Indices shift down after deletion; delete top-down to remove multiple at once.

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

CreateAttachment, Attachment, AttachmentCount