Partager via


Tablets.TabletsEnumerator.MoveNext, méthode

Mise à jour : November 2007

Déplace l'index d'énumérateur vers l'objet suivant de la collection.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public Function MoveNext As Boolean
'Utilisation
Dim instance As Tablets..::.TabletsEnumerator
Dim returnValue As Boolean

returnValue = instance.MoveNext()
public bool MoveNext()
public:
virtual bool MoveNext() sealed
public final boolean MoveNext()
public final function MoveNext() : boolean

Valeur de retour

Type : System.Boolean
Affectez la valeur true si la position d'index référence un objet ou false si la position d'index référence la fin de la collection.

Implémentations

IEnumerator.MoveNext()

Notes

Le Tablets.TabletsEnumerator prend en charge l'itération sur une collection Tablets et implémente l'interface IEnumerator (page pouvant être en anglais).

Cette méthode hérite de MoveNext (page pouvant être en anglais).

Exemples

Cet exemple utilise le IEnumerator (page pouvant être en anglais) pour la collection Tablets pour parcourir la collection Tablets, allTablets, et remplir l'objet ListBox (page pouvant être en anglais) listBoxTablets avec le nom de chaque périphérique de la tablette connectée au système.

' Calling the constructor automatically fills the 
' Tablets collection with the available Tablet objects.
Dim allTablets As Tablets = New Tablets()

' clear the list box
Me.listBoxTablets.Items.Clear()

' populate the list box with the name of each tablet
' version using GetEnumerator()
Dim theTabletsEnumerator As IEnumerator = allTablets.GetEnumerator()
While (theTabletsEnumerator.MoveNext())
    Dim T As Tablet = theTabletsEnumerator.Current
    Me.listBoxTablets.Items.Add(T.Name)
End While
// Calling the constructor automatically fills the 
// Tablets collection with the available Tablet objects.
Tablets allTablets = new Tablets();

// clear the list box
this.listBoxTablets.Items.Clear();

// populate the list box with the name of each tablet
// version using GetEnumerator()
IEnumerator theTabletsEnumerator = allTablets.GetEnumerator();
while (theTabletsEnumerator.MoveNext())
{
    Tablet T = (Tablet)theTabletsEnumerator.Current;
    this.listBoxTablets.Items.Add(T.Name);
}

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

Tablets.TabletsEnumerator, classe

Membres Tablets.TabletsEnumerator

Microsoft.Ink, espace de noms

Tablets