InkPicture.SelectionResizing Event
Occurs when the size of the current selection is about to change, such as through alterations to the user interface, cut-and-paste procedures, or the Selection property.
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
The event handler receives an argument of type InkOverlaySelectionResizingEventArgs that contains data about this event.
When you create an InkOverlaySelectionResizingEventHandler 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 if you add an event handler.
In this example, an SelectionResizing event handler examines a selection before it has been resized. If the selection will be resized so that any of it is outside the bounds of the window, the event handler turns the selection red by changing the Color property of each selected Stroke object.
Private Sub mInkPicture_SelectionResizing(ByVal sender As Object, ByVal e As InkOverlaySelectionResizingEventArgs) If e.NewPixelRect.Left < 0 Or e.NewPixelRect.Top < 0 Or _ e.NewPixelRect.Right > mInkPicture.ClientRectangle.Width Or _ e.NewPixelRect.Bottom > mInkPicture.ClientRectangle.Height Then For Each stroke As Stroke In mInkPicture.Selection ' change the stroke color stroke.DrawingAttributes.Color = Color.Red Next End If End Sub
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.