InkPicture.OnSystemGesture Method
InkPicture.OnSystemGesture Method |
Allows derived classes to modify the default behavior of the SystemGesture event.
Definition
Visual Basic .NET Overridable Protected Sub OnSystemGesture( _
ByVal e As InkCollectorSystemGestureEventArgs _
)C# protected virtual void OnSystemGesture(
InkCollectorSystemGestureEventArgs e
);Managed C++ protected: virtual void OnSystemGesture(
InkCollectorSystemGestureEventArgs *e
);
Parameters
e Microsoft.Ink.InkCollectorSystemGestureEventArgs. The InkCollectorSystemGestureEventArgs 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 SystemGesture event.
When overriding this method in a derived class, call the OnSystemGesture method of the base class so that registered delegates receive the event.
See Also