 | PdfiumFPDPage_HasFormFieldAtPoint Method |
Check the form field position by point.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static FormFieldTypes FPDPage_HasFormFieldAtPoint(
IntPtr form_handle,
IntPtr page,
double page_x,
double page_y
)
Public Shared Function FPDPage_HasFormFieldAtPoint (
form_handle As IntPtr,
page As IntPtr,
page_x As Double,
page_y As Double
) As FormFieldTypes
public:
static FormFieldTypes FPDPage_HasFormFieldAtPoint(
IntPtr form_handle,
IntPtr page,
double page_x,
double page_y
)
static member FPDPage_HasFormFieldAtPoint :
form_handle : IntPtr *
page : IntPtr *
page_x : float *
page_y : float -> FormFieldTypes
public static FormFieldTypes FPDPage_HasFormFieldAtPoint(
IntPtr form_handle,
IntPtr page,
double page_x,
double page_y
)
Patagames.Pdf.Pdfium.FPDPage_HasFormFieldAtPoint = function(form_handle, page, page_x, page_y);
Parameters
- form_handle IntPtr
- Handle to the form fill module. Returned by {0} Overload.
- page IntPtr
- Handle to the page. Returned by FPDF_LoadPage(IntPtr, Int32) function.
- page_x Double
- X position in PDF "user space".
- page_y Double
- Y position in PDF "user space".
Return Value
FormFieldTypesReturn the type of the formfiled; -1 indicates no fields.
See Also