Tablets.Item 属性
获取 Tablets 集合中指定索引处的 Tablet 对象。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public ReadOnly Property Item ( _
index As Integer _
) As Tablet
用法
Dim instance As Tablets
Dim index As Integer
Dim value As Tablet
value = instance.Item(index)
public Tablet Item[
int index
] { get; }
public:
property Tablet^ Item[int index] {
Tablet^ get (int index);
}
/** @property */
public Tablet get_Item(
int index
)
JScript 不支持索引属性。
参数
- index
类型:System.Int32
要获取的 Tablet 对象的从零开始的索引。
属性值
类型:Microsoft.Ink.Tablet
Tablets 集合中指定索引处的 Tablet 对象。
备注
如果 index 与 Tablets 集合的现有成员不匹配,则会引发 ArgumentOutOfRangeException。
备注
此属性在使用 C# 时不可用。必须按下面的示例所示使用该集合的索引器。
示例
此示例获取 Tablets 集合 allTablets 中的第一个 Tablet 对象。
' get the first tablet
Dim FirstTablet1 As Tablet = New Tablets().Item(0)
' or another way to do it
Dim allTablets As Tablets = New Tablets()
Dim FirstTablet2 As Tablet = allTablets.Item(0)
' yet another way
Dim FirstTablet3 As Tablet = allTablets(0)
' the following does not compile,
' indexer is not available directly from the .ctor in VB
' Dim FirstTablet4 As Tablet = New Tablets()(0)
// get the first tablet
Tablet FirstTablet1 = new Tablets()[0];
// or another way to do it
Tablets allTablets = new Tablets();
Tablet FirstTablet2 = allTablets[0];
// the following does not compile, Item is not available in C#
// Tablet FirstTablet3 = allTablets.Items[0];
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0