FPDFPage_FormFieldZOrderAtPoint function
- FPDF_FORMHANDLE hHandle,
- FPDF_PAGE page,
- double page_x,
- double page_y,
Function: FPDFPage_FormFieldZOrderAtPoint Get the form field z-order by point. Parameters: hHandle - Handle to the form fill module. Returned by FPDFDOC_InitFormFillEnvironment(). page - Handle to the page. Returned by FPDF_LoadPage(). page_x - X position in PDF "user space". page_y - Y position in PDF "user space". Return Value: Return the z-order of the form field; -1 indicates no field. Higher numbers are closer to the front.
Implementation
@ffi.Native<
ffi.Int Function(FPDF_FORMHANDLE, FPDF_PAGE, ffi.Double, ffi.Double)
>()
external int FPDFPage_FormFieldZOrderAtPoint(
FPDF_FORMHANDLE hHandle,
FPDF_PAGE page,
double page_x,
double page_y,
);