Документация PDFiumVCL

OnUnsupportedFeature property

Эта запись API сохраняет идентификаторы, сигнатуры, блоки кода и термины PDF в исходном виде.
Component: TPdf  ·  Unit: PDFium
Fired when the document uses a PDF feature that PDFium does not implement (e.g. XFA full forms, 3D annotations, multimedia).

Syntax

property OnUnsupportedFeature;

Description

Fired when the document uses a PDF feature that PDFium does not implement (e.g. XFA full forms, 3D annotations, multimedia).

Inspect the feature parameter to decide how to inform the user; the document still opens.

Wraps the corresponding PDFium API and exposes it as a TPdf instance member so consumers do not have to manage FPDF_DOCUMENT handles directly.

Remarks

Example

procedure TForm1.PdfOnUnsupportedFeature(Sender: TObject);
begin
  // react to OnUnsupportedFeature
end;

See Also

XFA, TPdfFeature