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