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