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

备注

如下面的示例所示,在 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