Page 1 of 1

CEF Simulate Mousedown

PostPosted: Mon Jun 29, 2015 12:28 pm
by Ludger
I'm searching for simulaet a MouseClick

i try out this:
Code: Select all
managedCefBrowserAdapter.OnMouseButton(500, 500, 0, true, 2, CefEventFlags.LeftMouseButton);


or i found this, but no idea how to execute:
Code: Select all
MouseEvent a = new MouseEvent();
a.Modifiers = CefEventFlags.LeftMouseButton;
a.X = 500;
a.Y = 500;


someone have an example for mouseclicking?