ExtendedProperties.IndexOf 方法 (Guid)

根据特定 ExtendedProperty 对象的全局唯一标识符 (GUID),返回该 ExtendedProperty 对象在 ExtendedProperties 集合中的索引。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Function IndexOf ( _
    id As Guid _
) As Integer
用法
Dim instance As ExtendedProperties
Dim id As Guid
Dim returnValue As Integer

returnValue = instance.IndexOf(id)
public int IndexOf(
    Guid id
)
public:
int IndexOf(
    Guid id
)
public int IndexOf(
    Guid id
)
public function IndexOf(
    id : Guid
) : int

参数

返回值

类型:System.Int32
返回 ExtendedProperty 对象在 ExtendedProperties 集合中的索引。

备注

如果传入的 Guid 在 ExtendedProperties 集合中没有对应的 ExtendedProperty 对象,则此方法返回 –1。

示例

此 C# 示例查找特定 ExtendedProperty 对象的索引,该对象具有赋给变量 theGuid 的 Guid 并存在于 Stroke 对象 theStroke 中。

int theIndex = theStroke.ExtendedProperties.IndexOf(theGUID);

此 Microsoft(R) Visual Basic(R) .NET 示例查找特定 ExtendedProperty 对象的索引,该对象具有赋给变量 theGuid 的 Guid 并存在于 Stroke 对象 theStroke 中。

Dim theIndex As Integer = theStroke.ExtendedProperties.IndexOf(theGUID)

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ExtendedProperties 类

ExtendedProperties 成员

IndexOf 重载

Microsoft.Ink 命名空间

ExtendedProperty