InkOverlaySelectionChangingEventArgs.NewSelection Property
Gets the new Strokes collection for a InkOverlaySelectionChangingEventArgs event.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public ReadOnly Property NewSelection As Strokes
'Usage
Dim instance As InkOverlaySelectionChangingEventArgs
Dim value As Strokes
value = instance.NewSelection
public Strokes NewSelection { get; }
public:
property Strokes^ NewSelection {
Strokes^ get ();
}
public function get NewSelection () : Strokes
Property Value
Type: Microsoft.Ink.Strokes
The new Strokes collection.
Examples
In this example, the SelectionChanging event handler prohibits the selection of multiple strokes by removing all but one Stroke object from the current selection.
Private Sub mInkObject_SelectionChanging(ByVal sender As Object, ByVal e As InkOverlaySelectionChangingEventArgs)
While e.NewSelection.Count > 1
e.NewSelection.RemoveAt(e.NewSelection.Count - 1)
End While
End Sub
private void mInkObject_SelectionChanging(object sender, InkOverlaySelectionChangingEventArgs e)
{
while (e.NewSelection.Count > 1)
{
e.NewSelection.RemoveAt(e.NewSelection.Count - 1);
}
}
Platforms
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.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
InkOverlaySelectionChangingEventArgs Class