ContextLinkCollection.ContextLinkCollectionEnumerator.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.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public Function MoveNext As Boolean
'Utilisation
Dim instance As ContextLinkCollection..::.ContextLinkCollectionEnumerator
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. Affectez la valeur false si la position d'index référence la fin de la collection.
Implémentations
Exemples
Cet exemple obtient le Systems.Collections.IEnumerator(page pouvant être en anglais) pour le ContextLinkCollection, links et l'utilise pour placer chaque objet ContextLink de la collection dans ArrayList (page pouvant être en anglais).
Dim customLinks As New ArrayList()
' Version using GetEnumerator()
Dim enumerator As ContextLinkCollection.ContextLinkCollectionEnumerator = _
links.GetEnumerator()
enumerator.Reset()
While enumerator.MoveNext()
Dim aLink As ContextLink = CType(enumerator.Current, ContextLink)
customLinks.Add(aLink)
End While
ArrayList customLinks = new ArrayList();
// Version using GetEnumerator()
ContextLinkCollection.ContextLinkCollectionEnumerator
enumerator = links.GetEnumerator();
enumerator.Reset();
while (enumerator.MoveNext())
{
ContextLink aLink = ((ContextLink)enumerator.Current);
customLinks.Add(aLink);
}
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
ContextLinkCollection.ContextLinkCollectionEnumerator, classe
Membres ContextLinkCollection.ContextLinkCollectionEnumerator