InkOverlay.OnSelectionMoving Method
InkOverlay.OnSelectionMoving Method |
Allows derived classes to modify the default behavior of the SelectionMoving event.
Definition
Visual Basic .NET Overridable Protected Sub OnSelectionMoving( _
ByVal e As InkOverlaySelectionMovingEventArgs _
)C# protected virtual void OnSelectionMoving(
InkOverlaySelectionMovingEventArgs e
);Managed C++ protected: virtual void OnSelectionMoving(
InkOverlaySelectionMovingEventArgs *e
);
Parameters
e Microsoft.Ink.InkOverlaySelectionMovingEventArgs. The InkOverlaySelectionMovingEventArgs object that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate.
In derived classes, this method is called only if a delegate is attached to the SelectionMoving event.
When overriding this method in a derived class, call the OnSelectionMoving method of the base class so that registered delegates receive the event.
See Also