ContextLinkCollection.ContextLinkCollectionEnumerator, classe
Mise à jour : November 2007
Implémentation de l'interface IEnumerator qui prend en charge le parcours d'un ContextLinkCollection.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public Class ContextLinkCollectionEnumerator _
Implements IEnumerator
'Utilisation
Dim instance As ContextLinkCollection.ContextLinkCollectionEnumerator
public class ContextLinkCollectionEnumerator : IEnumerator
public ref class ContextLinkCollectionEnumerator : IEnumerator
public class ContextLinkCollectionEnumerator implements IEnumerator
public class ContextLinkCollectionEnumerator implements IEnumerator
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);
}
Hiérarchie d'héritage
System.Object
Microsoft.Ink.ContextLinkCollection.ContextLinkCollectionEnumerator
Sécurité des threads
Tous les membres static (Shared en Visual Basic) publics de ce type sont thread-safe. Il n'est pas garanti que les membres d'instance soient thread-safe.
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
Membres ContextLinkCollection.ContextLinkCollectionEnumerator