PDFium Component Docs

DeleteAttachment Funktion

Denna API-post behåller identifierare, signaturer, kodblock och PDF-termer i ursprunglig form.
Komponent: TPdf  ·  Enhet: PDFium
Removes the embedded file attachment at the given index.

Syntax

function DeleteAttachment(Index: Integer): Boolean;

Beskrivning

Removes the embedded file attachment at the given index.

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

Alla ändringar på aktuell sida buffras i PDFiums minnesrepresentation. Anropa UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Anmärkningar

Exempel

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;

Se även

CreateAttachment, Attachment, AttachmentCount