Dieser API-Eintrag behält Bezeichner, Signaturen, Codeblöcke und PDF-Begriffe in ihrer Originalform.
Komponente: TPdf · Unit: PDFium
Interface that lets your application supply forms-related callbacks (Beep, Invalidate, OutputDocFile, etc.).
Syntax
property FormFill;
Beschreibung
Interface that lets your application supply forms-related callbacks (Beep, Invalidate, OutputDocFile, etc.).
Assign a custom implementation to override the default no-op handlers.
Wraps the corresponding PDFium API and exposes it as a TPdf instance member so consumers do not have to manage FPDF_DOCUMENT handles directly.
Hinweise
- Always check
Pdf1.Active bevor seitenbezogene Operationen aufgerufen werden; Methoden, die ein geöffnetes Dokument erfordern, lösen EPdfError otherwise.
- Dokumentbearbeitende Methoden (AddPage / DeletePage / UpdatePage / CreateAnnotation) hinterlassen das Dokument im Arbeitsspeicher als geändert - denken Sie daran,
SaveToFile to persist.
- Class methods (LoadLibrary / UnloadLibrary / GetRecommendedV8Flags) can be called without a TPdf instance.
Beispiel
if Pdf1.Active then
Pdf1.FormFill;
Siehe auch