ExtendedProperties.GetEnumerator 方法
返回一个对象,该对象实现 System.Collections.IEnumerator 接口,该接口可以循环访问 ExtendedProperties 集合中的 ExtendedProperty 对象。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Function GetEnumerator As ExtendedProperties..::.ExtendedPropertiesEnumerator
用法
Dim instance As ExtendedProperties
Dim returnValue As ExtendedProperties..::.ExtendedPropertiesEnumerator
returnValue = instance.GetEnumerator()
public ExtendedProperties..::.ExtendedPropertiesEnumerator GetEnumerator()
public:
ExtendedProperties..::.ExtendedPropertiesEnumerator^ GetEnumerator()
public ExtendedProperties..::.ExtendedPropertiesEnumerator GetEnumerator()
public function GetEnumerator() : ExtendedProperties..::.ExtendedPropertiesEnumerator
返回值
类型:Microsoft.Ink.ExtendedProperties.ExtendedPropertiesEnumerator
返回一个对象,该对象实现 System.Collections.IEnumerator 接口,该接口可以循环访问 ExtendedProperties 集合中的 ExtendedProperty 对象。
示例
下面的示例通过两种方式演示如何循环访问 ExtendedProperties 集合并获取该集合中的每个 ExtendedProperty 对象。虽然对于其他对象同样适用,但本示例中的 ExtendedProperties 集合是由 Stroke.ExtendedProperties 属性返回的。
在此示例中,将获取 ExtendedProperties 集合的 System.Collections.IEnumerator,并用于枚举该集合的每个项。
Dim propList As ArrayList = New ArrayList()
Dim ienum As IEnumerator = stroke.ExtendedProperties.GetEnumerator()
ienum.Reset()
While ienum.MoveNext()
Dim prop As ExtendedProperty = DirectCast(ienum.Current, ExtendedProperty)
propList.Add(prop)
End While
ArrayList propList = new ArrayList();
IEnumerator ienum = stroke.ExtendedProperties.GetEnumerator();
ienum.Reset();
while (ienum.MoveNext())
{
ExtendedProperty prop = (ExtendedProperty)ienum.Current;
propList.Add(prop);
}
此示例使用 foreach 语句,该语句调用内部代码中的 GetEnumerator 方法,该方法是编译器为支持此语句而生成的。
Dim propList As ArrayList = New ArrayList()
For Each prop As ExtendedProperty In stroke.ExtendedProperties
propList.Add(prop)
Next
ArrayList propList = new ArrayList();
foreach (ExtendedProperty prop in stroke.ExtendedProperties)
{
propList.Add(prop);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0