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 物件。
範例
在下列範例中,會示範兩種逐一查看 ContextLinkCollection (名為 links) 的方式,並將所有自訂連結放入名為 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 陳述式,該陳述式會在內部程式碼中呼叫編譯器 (Compiler) 所產生用來支援該陳述式的 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