Click or drag to resize
IBrowserHost.SendMouseWheelEvent Method
Version 55.0.0
Send a mouse wheel event to the browser.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 55.0.0.0 (55.0.0.0)
Syntax
void SendMouseWheelEvent(
	int x,
	int y,
	int deltaX,
	int deltaY,
	CefEventFlags modifiers
)

Parameters

x
Type: System.Int32
X-Axis coordinate relative to the upper-left corner of the view.
y
Type: System.Int32
Y-Axis coordinate relative to the upper-left corner of the view.
deltaX
Type: System.Int32
Movement delta for X direction.
deltaY
Type: System.Int32
movement delta for Y direction.
modifiers
Type: CefSharp.CefEventFlags
click modifiers e.g. Ctrl
See Also