ContextLinkCollection.ContextLinkCollectionEnumerator.Current 屬性
取得 ContextLinkCollection 中的 ContextLink 物件,列舉值會指向前者。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public ReadOnly Property Current As ContextLink
'用途
Dim instance As ContextLinkCollection..::.ContextLinkCollectionEnumerator
Dim value As ContextLink
value = instance.Current
public ContextLink Current { get; }
public:
property ContextLink^ Current {
ContextLink^ get ();
}
/** @property */
public ContextLink get_Current()
public function get Current () : ContextLink
屬性值
型別:System.Windows.Ink.ContextLink
ContextLinkCollection 中的 ContextLink 物件,列舉值會指向前者。
備註
在建立 ContextLinkCollection.ContextLinkCollectionEnumerator 或呼叫 Reset 方法之後,請呼叫 MoveNext 方法,將列舉值前移至集合的第一個元素,才能讀取 Current 屬性的值。否則,Current 屬性為未定義。
如果上次呼叫 MoveNext 方法傳回 false,則 Current 屬性會擲回例外狀況。如果最後一次呼叫 MoveNext 方法時傳回 false,表示列舉值已到達 ContextLinkCollection 的結尾。
Current 屬性不會移動列舉值的位置。在呼叫 MoveNext 方法或 Reset 方法之前,對 Current 屬性的連續呼叫都會傳回相同的物件。
只要集合保持不變,列舉值將保持有效。如果對集合進行變更,例如加入、修改或刪除項目,列舉值會失效且無法復原。下次呼叫 MoveNext 方法或 Reset 方法時,會擲回 InvalidOperationException 例外狀況。如果在呼叫 MoveNext 方法和呼叫 Current 屬性之間修改了集合,則 Current 屬性會傳回其所設定成的元素,即使列舉值已經失效也一樣。
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
ContextLinkCollection.ContextLinkCollectionEnumerator 類別