TabletDeviceCollection.Item[Int32] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取集合中指定索引处的 TabletDevice 对象。
public:
property System::Windows::Input::TabletDevice ^ default[int] { System::Windows::Input::TabletDevice ^ get(int index); };
public System.Windows.Input.TabletDevice this[int index] { get; }
member this.Item(int) : System.Windows.Input.TabletDevice
Default Public ReadOnly Property Item(index As Integer) As TabletDevice
参数
- index
- Int32
从集合中检索到的 TabletDevice 的从零开始的索引。
属性值
集合中指定索引处的 TabletDevice 对象。
例外
如果 index
小于零,或者 index
大于或等于集合中 TabletDeviceCollection 对象的数目。
示例
以下示例演示 了 Item[] 属性。
string[] myTabletDeviceNamesArray = new string[numTabletDevices];
for (int i = 0; i < numTabletDevices; i++)
{
myTabletDeviceNamesArray[i] = myTabletDeviceCollection[i].Name;
}
Dim myTabletDeviceNamesArray(numTabletDevices) As String
Dim i As Integer = 0
While i < numTabletDevices
myTabletDeviceNamesArray(i) = myTabletDeviceCollection(i).Name
i = i & 1
End While