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

Called when mouse wheel rotates. Raises the Wheel event.

Namespace: Tools.DevicesT
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected virtual void OnWheel(
	LowLevelMouseWheelEventArgs e
)
Visual Basic
Protected Overridable Sub OnWheel ( _
	e As LowLevelMouseWheelEventArgs _
)
Visual C++
protected:
virtual void OnWheel(
	LowLevelMouseWheelEventArgs^ e
)
F#
abstract OnWheel : 
        e:LowLevelMouseWheelEventArgs -> unit 
override OnWheel : 
        e:LowLevelMouseWheelEventArgs -> unit 
JScript
protected function OnWheel(
	e : LowLevelMouseWheelEventArgs
)

Parameters

e
Type: Tools.DevicesT..::..LowLevelMouseWheelEventArgs
Event arguments

Remarks

Note for inheritors: In order to the Wheel event to be raised, call base class method.

Windows Vista and latter: Handles also horizontal wheel. See Horizontal.

See Also