PDFiumVCL Docs

FormFieldCount property

Denna API-post behåller identifierare, signaturer, kodblock och PDF-termer i ursprunglig form.
Component: TPdfView  ·  Unit: PDFium
TPdfView wrapper that forwards to TPdf.FormFieldCount.

Syntax

property FormFieldCount; // forwards to underlying TPdf

Description

Mirrors TPdf.FormFieldCount. The TPdfView component forwards the call to its underlying Pdf instance and refreshes the view if the call mutates the document.

All semantic notes from TPdf.FormFieldCount apply identically here; the only difference is that you address the operation through the visual control instead of the model object.

When TPdfView is bound to an external TPdf (assigning PdfView1.Pdf := Pdf1), reading this member returns the same data as Pdf1.FormFieldCount; when TPdfView owns its internal TPdf, this member is the only public accessor.

Remarks

Example

if PdfView1.Active then
  Memo1.Lines.Add('FormFieldCount = ' + VarToStr(PdfView1.FormFieldCount));

See Also

FormFieldCount, Pdf, Active