Docs de PDFiumPas

DeleteAttachment Función

Esta entrada API conserva identificadores, firmas, bloques de código y términos PDF en su forma original.
Componente: TPdf  ·  Unidad: PDFium
Removes the embedded file attachment at the given index.

Sintaxis

function DeleteAttachment(Index: Integer): Boolean;

Descripción

Removes the embedded file attachment at the given index.

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

Todas las ediciones de la página actual se almacenan en búfer en la representación en memoria de PDFium. Llama a UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Notas

Ejemplo

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;

Véase también

CreateAttachment, Attachment, AttachmentCount