CefBrowserHost SendMouseWheelEvent Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

Send a mouse wheel event to the browser. The |x| and |y| coordinates are relative to the upper-left corner of the view. The |deltaX| and |deltaY| values represent the movement delta in the X and Y directions respectively. In order to scroll inside select popups with window rendering disabled CefRenderHandler::GetScreenPoint should be implemented properly.

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

public void SendMouseWheelEvent(
	CefMouseEvent event,
	int deltaX,
	int deltaY
)

Parameters

event
Type: Xilium.CefGlue CefMouseEvent

[Missing <param name="event"/> documentation for "M:Xilium.CefGlue.CefBrowserHost.SendMouseWheelEvent(Xilium.CefGlue.CefMouseEvent,System.Int32,System.Int32)"]

deltaX
Type: OnlineSystem Int32

[Missing <param name="deltaX"/> documentation for "M:Xilium.CefGlue.CefBrowserHost.SendMouseWheelEvent(Xilium.CefGlue.CefMouseEvent,System.Int32,System.Int32)"]

deltaY
Type: OnlineSystem Int32

[Missing <param name="deltaY"/> documentation for "M:Xilium.CefGlue.CefBrowserHost.SendMouseWheelEvent(Xilium.CefGlue.CefMouseEvent,System.Int32,System.Int32)"]

See Also