InkCollectorMouseMoveEventHandler Delegate
Represents the method that handles the MouseMove event of an InkCollector object.
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
'Declaration Public Delegate Sub InkCollectorMouseMoveEventHandler ( _ sender As Object, _ e As CancelMouseEventArgs _ ) 'Usage Dim instance As New InkCollectorMouseMoveEventHandler(AddressOf HandlerMethod)
Parameters
- sender
- Type: System.Object
The source InkCollector object of this event.
- e
- Type: Microsoft.Ink.CancelMouseEventArgs
The CancelMouseEventArgs object that contains the event data.
When you create an InkCollectorMouseMoveEventHandler delegate, you identify the method that handles the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For performance reasons, the default event interest is off but is turned on automatically in managed code if you add an event handler.
Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: