InkOverlay.OnSelectionResized Method

InkOverlay.OnSelectionResized Method

Allows derived classes to modify the default behavior of the SelectionResized event.

Definition

Visual Basic .NET Overridable Protected Sub OnSelectionResized( _
ByVal e As InkOverlaySelectionResizedEventArgs _
)
C# protected virtual void OnSelectionResized(
InkOverlaySelectionResizedEventArgs e
);
Managed C++ protected: virtual void OnSelectionResized(
InkOverlaySelectionResizedEventArgs *e
);

Parameters

e Microsoft.Ink.InkOverlaySelectionResizedEventArgs. The InkOverlaySelectionResizedEventArgs 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 SelectionResized event.

When overriding this method in a derived class, call the OnSelectionResized method of the base class so that registered delegates receive the event.

See Also