InkOverlaySelectionChangingEventArgs.NewSelection, propriété
Mise à jour : November 2007
Obtient la nouvelle collection Strokes pour un événement InkOverlaySelectionChangingEventArgs.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public ReadOnly Property NewSelection As Strokes
'Utilisation
Dim instance As InkOverlaySelectionChangingEventArgs
Dim value As Strokes
value = instance.NewSelection
public Strokes NewSelection { get; }
public:
property Strokes^ NewSelection {
Strokes^ get ();
}
/** @property */
public Strokes get_NewSelection()
public function get NewSelection () : Strokes
Valeur de propriété
Type : Microsoft.Ink.Strokes
Nouvelle collection Strokes.
Exemples
Dans cet exemple, le gestionnaire d'événements SelectionChanging interdit la sélection de plusieurs traits en supprimant tous les objets Stroke de la sélection actuelle sauf un.
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);
}
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0
Voir aussi
Référence
InkOverlaySelectionChangingEventArgs, classe