GestureRecognizer.ProcessMouseWheelEvent Method

Definition

Processes pointer input and raises the GestureRecognizer events appropriate to a mouse wheel action (for the gestures and manipulations specified by the GestureSettings property).

For more details on this API, please see the the UWP WinRT ProcessMouseWheelEvent topic.

public:
 virtual void ProcessMouseWheelEvent(PointerPoint ^ value, bool isShiftKeyDown, bool isControlKeyDown) = ProcessMouseWheelEvent;
void ProcessMouseWheelEvent(PointerPoint const& value, bool const& isShiftKeyDown, bool const& isControlKeyDown);
public void ProcessMouseWheelEvent(PointerPoint value, bool isShiftKeyDown, bool isControlKeyDown);
function processMouseWheelEvent(value, isShiftKeyDown, isControlKeyDown)
Public Sub ProcessMouseWheelEvent (value As PointerPoint, isShiftKeyDown As Boolean, isControlKeyDown As Boolean)

Parameters

value
PointerPoint

The input point.

isShiftKeyDown
Boolean

bool

True, if the Shift key is pressed. Otherwise, false.

isControlKeyDown
Boolean

bool

True, if the Ctrl key is pressed. Otherwise, false.

Applies to