共用方式為


ExtendedProperties.IndexOf 方法 (ExtendedProperty)

根據 ExtendedProperty 物件的名稱,傳回 ExtendedProperties 集合中特定 ExtendedProperty 物件的索引。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
Public Function IndexOf ( _
    ep As ExtendedProperty _
) As Integer
'用途
Dim instance As ExtendedProperties
Dim ep As ExtendedProperty
Dim returnValue As Integer

returnValue = instance.IndexOf(ep)
public int IndexOf(
    ExtendedProperty ep
)
public:
int IndexOf(
    ExtendedProperty^ ep
)
public int IndexOf(
    ExtendedProperty ep
)
public function IndexOf(
    ep : ExtendedProperty
) : int

參數

傳回值

型別:System.Int32
ExtendedProperties 集合中 ExtendedProperty 物件的索引。

備註

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

範例

這個範例會取得 ExtendedProperties 集合中 ExtendedProperty 物件的索引。

Dim idx As Integer = stroke.ExtendedProperties.IndexOf(exProp)
int idx = stroke.ExtendedProperties.IndexOf(exProp);

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

ExtendedProperties 類別

ExtendedProperties 成員

IndexOf 多載

Microsoft.Ink 命名空間

ExtendedProperty