PDFium Component Docs

SetFormFieldFlagsAt method

Component: TPdfView  ·  Unit: PDFium
یک wrapper برای TPdfView که فراخوانی را به TPdf.SetFormFieldFlagsAt می‌فرستد

Syntax

procedure SetFormFieldFlagsAt(X, Y: Integer; const Flags: TPdfFormFieldFlags);

Description

Mirrors TPdf.SetFormFieldFlagsAt. 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.SetFormFieldFlagsAt 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.SetFormFieldFlagsAt; when TPdfView owns its internal TPdf, this member is the only public accessor.

Remarks

Example

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

See Also

SetFormFieldFlagsAt, Pdf