UtilMouseSendMouseButtonAsync(IntPtr, MouseButton, Point) Method
Asynchronouslly sends a mouse button click to the specified coordinates on the specified window.
Namespace: DevCase.Core.IO.Devices.InputAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool SendMouseButtonAsync(
IntPtr hWnd,
MouseButton button,
Point pt
)
Public Shared Function SendMouseButtonAsync (
hWnd As IntPtr,
button As MouseButton,
pt As Point
) As Boolean
Dim hWnd As IntPtr
Dim button As MouseButton
Dim pt As Point
Dim returnValue As Boolean
returnValue = UtilMouse.SendMouseButtonAsync(hWnd,
button, pt)
public:
static bool SendMouseButtonAsync(
IntPtr hWnd,
MouseButton button,
Point pt
)
static member SendMouseButtonAsync :
hWnd : IntPtr *
button : MouseButton *
pt : Point -> bool
No code example is currently available or this language may not be supported.
- hWnd IntPtr
-
A handle to the target window.
- button MouseButton
-
The mouse button to simulate.
- pt Point
-
The mouse coordinates within the client area of the window.
Boolean if the function succeeds; otherwise,
.