InkCanvas.SelectionMoving Event
Occurs before selected strokes and elements are moved.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
This event occurs after the user requests that a selection of strokes and/or elements be moved, but before the change is applied.
The event handler receives an argument of type InkCanvasSelectionEditingEventArgs with two properties: OldRectangle and NewRectangle. OldRectangle defines the boundaries of the selection before the move and NewRectangle defines the boundaries of the selection after the move.
After the change is applied, the SelectionMoved event will occur.
The following example prevents the user from moving selected items vertically on an InkCanvas.
Private Sub inkCanvas1_SelectionMoving(ByVal sender As Object, _ ByVal e As InkCanvasSelectionEditingEventArgs) ' Allow the selection to only move horizontally. Dim newRect As Rect = e.NewRectangle e.NewRectangle = New Rect(newRect.X, e.OldRectangle.Y, newRect.Width, newRect.Height) End Sub 'inkCanvas1_SelectionMoving
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
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.