ContextLinkCollection.ContextLinkCollectionEnumerator.Current 属性

获取枚举数指向的 ContextLinkCollection 中的 ContextLink 对象。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.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

属性值

类型:Microsoft.Ink.ContextLink
枚举数指向的 ContextLinkCollection 中的 ContextLink 对象。

备注

创建 ContextLinkCollection.ContextLinkCollectionEnumerator 枚举数或调用 Reset 方法之后,必须首先调用 MoveNext 方法将枚举数前移到集合的第一个元素,然后才能读取 Current 属性的值。否则,Current 属性是未定义的属性。

如果上次调用 MoveNext 方法返回的是 false,则 Current 属性会引发异常。如果上次调用 MoveNext 方法返回的是 false,则枚举数已经到达 ContextLinkCollection 的末尾。

Current 属性不移动枚举数的位置。连续调用 Current 属性将返回相同的对象,直到调用 MoveNext 方法或 Reset 方法为止。

只要该集合保持不变,枚举数也就保持有效。如果对该集合进行了更改(例如添加、修改或删除元素),则枚举数将失效且不可恢复。下次调用 MoveNext 方法或 Reset 方法将引发 InvalidOperationException 异常。如果在调用 MoveNext 方法和调用 Current 属性之间修改集合,那么即使枚举数已经无效,Current 属性也将返回它所设置成的元素。

示例

此示例获取 ContextLinkCollection (links) 的 Systems.Collections.IEnumerator,并使用该枚举数将集合中包含的每个 ContextLink 都放置到一个 ArrayList 中。

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);
}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ContextLinkCollection.ContextLinkCollectionEnumerator 类

ContextLinkCollection.ContextLinkCollectionEnumerator 成员

Microsoft.Ink 命名空间