共用方式為


ExtendedProperties.IndexOf 方法 (Guid)

根據 ExtendedProperty 物件的全域唯一識別項 (GUID),傳回 ExtendedProperties 集合中特定 ExtendedProperty 物件的索引。

命名空間:  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
傳回 ExtendedProperties 集合中 ExtendedProperty 物件的索引。

備註

如果傳入 ExtendedProperties 集合中不存在之 ExtendedProperty 物件的 GUID,這個方法會傳回 -1。

範例

這個 C# 範例會尋找特定 ExtendedProperty 物件的索引,這個特定物件已指派 GUID 給 theGuid 變數,而且存在於 Stroke 物件 (theStroke) 中。

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

這個 Microsoft® Visual Basic® .NET 範例會尋找特定 ExtendedProperty 物件的索引,這個特定物件已指派 GUID 給 theGuid 變數,而且存在於 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