FPDFPage_FormFieldZOrderAtPoint method
int
FPDFPage_FormFieldZOrderAtPoint(
- 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
int FPDFPage_FormFieldZOrderAtPoint(
FPDF_FORMHANDLE hHandle,
FPDF_PAGE page,
double page_x,
double page_y,
) {
return _FPDFPage_FormFieldZOrderAtPoint(hHandle, page, page_x, page_y);
}