 | PdfiumFORM_OnLButtonDown Method |
You can call this member function when the user presses the left mouse button.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FORM_OnLButtonDown(
IntPtr form_handle,
IntPtr page,
int modifier,
double page_x,
double page_y
)
Public Shared Function FORM_OnLButtonDown (
form_handle As IntPtr,
page As IntPtr,
modifier As Integer,
page_x As Double,
page_y As Double
) As Boolean
public:
static bool FORM_OnLButtonDown(
IntPtr form_handle,
IntPtr page,
int modifier,
double page_x,
double page_y
)
static member FORM_OnLButtonDown :
form_handle : IntPtr *
page : IntPtr *
modifier : int *
page_x : float *
page_y : float -> bool
public static boolean FORM_OnLButtonDown(
IntPtr form_handle,
IntPtr page,
int modifier,
double page_x,
double page_y
)
Patagames.Pdf.Pdfium.FORM_OnLButtonDown = function(form_handle, page, modifier, 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.
- modifier Int32
- Indicates whether various virtual keys are down.
- page_x Double
- Specifies the x-coordinate of the cursor in PDF user space.
- page_y Double
- Specifies the y-coordinate of the cursor in PDF user space.
Return Value
BooleanTRUE indicates success; otherwise false.
See Also