PDFium Component Docs

FocusFormField method

Component: TPdfView  ·  Unit: PDFium
Hoạt động với con trỏ focus logic của AcroForm trên trang hiện tại cho quy trình làm việc bằng bàn phím, giọng nói và khả năng truy cập

Syntax

function FocusFormField(Index: Integer): Boolean;

Parameters

IndexInteger. Zero-based AcroForm widget index on the current viewer page

Return Value

Boolean. True khi Index hợp lệ cho trang hiện tại của trình xem và con trỏ focus logic được cập nhật

Description

The form-focus members maintain a logical cursor over AcroForm widget annotations on the current page. The cursor follows FormFieldTabOrder and returns -1 when no current-page field is focused

Use these members when an application needs to walk fields from code, drive voice-assisted form filling, or expose the active field to an accessibility layer without relying on mouse hit testing

Remarks

Example

if Pdf1.FormFieldCount > 0 then
  Pdf1.FocusFormField(0);
ShowMessage(Pdf1.FocusedFormFieldText);

See Also

FormField, FormFieldCount, FormFieldInfo, FormFieldTabOrder, FocusedFormFieldIndex