 | PdfPageOnLButtonDown Method |
You can call this member function when the user presses the left mouse button.
Namespace:
Patagames.Pdf.Net
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntaxpublic bool OnLButtonDown(
int modifier,
float x,
float y
)
Public Function OnLButtonDown (
modifier As Integer,
x As Single,
y As Single
) As Boolean
public:
bool OnLButtonDown(
int modifier,
float x,
float y
)
member OnLButtonDown :
modifier : int *
x : float32 *
y : float32 -> bool
public boolean OnLButtonDown(
int modifier,
float x,
float y
)
function OnLButtonDown(modifier, x, y);
Parameters
- modifier
- Type: SystemInt32
Indicates whether various virtual keys are down. - x
- Type: SystemSingle
Specifies the x-coordinate of the cursor in PDF user space. - y
- Type: SystemSingle
Specifies the y-coordinate of the cursor in PDF user space.
Return Value
Type:
BooleanTRUE indicates success; otherwise false.
See Also