共用方式為


Strokes.Item 屬性

取得 Strokes 集合中位於指定索引處的 Stroke 物件。

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

語法

'宣告
Public ReadOnly Property Item ( _
    index As Integer _
) As Stroke
'用途
Dim instance As Strokes
Dim index As Integer
Dim value As Stroke

value = instance.Item(index)
public Stroke Item[
    int index
] { get; }
public:
property Stroke^ Item[int index] {
    Stroke^ get (int index);
}
/** @property */
public Stroke get_Item(
    int index
)
JScript 不支援索引屬性。

參數

屬性值

型別:Microsoft.Ink.Stroke
Strokes 集合中位於指定索引處的 Stroke 物件。

備註

如果 index 與 Strokes 集合的現有成員不相符,則會擲回 ArgumentOutOfRangeException (英文)。

ms572055.alert_note(zh-tw,VS.90).gif注意事項:

在 C# 中,請使用集合的索引子 (如下列範例所示),而不要使用集合的 Item 屬性。

範例

這個 C# 範例會從 Strokes 集合 theStrokes 中取得第一個 Stroke 物件。

Microsoft.Ink.Stroke theStroke = theStrokes[0];

這個 Microsoft Visual Basic.NET 範例會從 Strokes 集合 theStrokes 中取得第一個 Stroke 物件。

Dim theStroke As Microsoft.Ink.Stroke = theStrokes.Item(0)

平台

Windows Vista

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

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

Strokes 類別

Strokes 成員

Microsoft.Ink 命名空間

Stroke