共用方式為


Strokes.IndexOf 方法

傳回 Strokes 集合中特定 Stroke 物件的索引。

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

語法

'宣告
Public Function IndexOf ( _
    s As Stroke _
) As Integer
'用途
Dim instance As Strokes
Dim s As Stroke
Dim returnValue As Integer

returnValue = instance.IndexOf(s)
public int IndexOf(
    Stroke s
)
public:
int IndexOf(
    Stroke^ s
)
public int IndexOf(
    Stroke s
)
public function IndexOf(
    s : Stroke
) : int

參數

傳回值

型別:System.Int32
傳回 Strokes 集合中 Stroke 的索引。

備註

s 參數所表示的 Stroke 物件必須與 Strokes 集合一樣都會與相同的 Ink 物件產生關聯。

如果 Stroke (由 s 參數所表示) 的 Id 屬性不符合 Strokes 集合的其中一個 ID,這個方法會傳回 -1。

範例

這個 C# 範例會尋找 Strokes 集合 theStrokes 中特定 Stroke 物件 theStroke 的索引。

int theIndex = theStrokes.IndexOf(theStroke);

這個 Microsoft Visual Basic.NET 範例會尋找 Strokes 集合 theStrokes 中特定 Stroke 物件 theStroke 的索引。

Dim theIndex As Integer = theStrokes.IndexOf(theStroke)

平台

Windows Vista

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

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

Strokes 類別

Strokes 成員

Microsoft.Ink 命名空間

Stroke