ContextLinkCollection.GetEnumerator 方法

返回一个对象,该对象实现 [Systems.Collections.IEnumerator] 接口并可以循环访问 ContextLinkCollection 中的 ContextLink 对象。

命名空间:  System.Windows.Ink
程序集:  IAWinFX(在 IAWinFX.dll 中)

语法

声明
Public Function GetEnumerator As ContextLinkCollection..::.ContextLinkCollectionEnumerator
用法
Dim instance As ContextLinkCollection
Dim returnValue As ContextLinkCollection..::.ContextLinkCollectionEnumerator

returnValue = instance.GetEnumerator()
public ContextLinkCollection..::.ContextLinkCollectionEnumerator GetEnumerator()
public:
ContextLinkCollection..::.ContextLinkCollectionEnumerator^ GetEnumerator()
public ContextLinkCollection..::.ContextLinkCollectionEnumerator GetEnumerator()
public function GetEnumerator() : ContextLinkCollection..::.ContextLinkCollectionEnumerator

返回值

类型:System.Windows.Ink.ContextLinkCollection.ContextLinkCollectionEnumerator
一个对象,实现 [Systems.Collections.IEnumerator] 接口,并且可以循环访问 ContextLinkCollection 中的 ContextLink 对象。

示例

下面的示例演示两种方法,用于循环访问名为 links 的 ContextLinkCollection,并将所有自定义链接放置到名为 customLinks 的 ArrayList 中。

此示例获取 ContextLinkCollection(名为 links)的 [Systems.Collections.IEnumerator]。

Dim customLinks As New ArrayList()

' Version using GetEnumerator()
Dim enumerator As ContextLinkCollection.ContextLinkCollectionEnumerator _
    = links.GetEnumerator()
While enumerator.MoveNext()
    Dim link As ContextLink = CType(enumerator.Current, ContextLink)
    ' Perform some action with each ContextLink.

End While
ArrayList customLinks = new ArrayList();
// Version using GetEnumerator()
ContextLinkCollection.ContextLinkCollectionEnumerator
    enumerator = links.GetEnumerator();
while (enumerator.MoveNext())
{
    ContextLink link =
        ((ContextLink)enumerator.Current);

    // Perform some action with each ContextLink.
}

此示例使用 foreach 语句,该语句调用内部代码中的 GetEnumerator 方法,该方法是编译器为支持此语句而生成的。

' Version using foreach
For Each link As ContextLink In links
Next link
' Perform some action with each ContextLink.
// Version using foreach
foreach (ContextLink link in links)
{
    // Perform some action with each ContextLink.
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ContextLinkCollection 类

ContextLinkCollection 成员

System.Windows.Ink 命名空间