PDFium Component Docs

Signature-egenskap

Component: TPdf  ·  Unit: PDFium
Indeksert egenskap — returnerer én digital signaturpost (signer, reason, contact, byte range)

Syntax

property Signature[Index: Integer]: TPdfSignature; // read only

Description

Indexed read-only property that returns one digital-signature record (signer, reason, contact, byte range)

Requires Active to be True. Resultatet er udefinert når indeksen er utenfor gyldig område; send verdier i 0 .. SignatureCount - 1 (or use the array's Length for non-counted variants).

The returned record is a snapshot of the value at the time of the call; subsequent edits to the document do not modify previously returned records.

Parameters

IndexZero-based index in the range 0 .. SignatureCount - 1.

Remarks

Example

var
  I: Integer;
begin
  if not Pdf1.Active then Exit;
  for I := 0 to Pdf1.SignatureCount - 1 do
  begin
    // inspect Pdf1.Signature[I]
    Memo1.Lines.Add(IntToStr(I));
  end;
end;

See Also

SignatureCount