TabletDeviceCollection.Item[Int32] プロパティ

定義

コレクション内の指定したインデックス位置にある 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 の 0 から始まるインデックス番号。

プロパティ値

コレクション内の指定したインデックス位置にある TabletDevice オブジェクト。

例外

index が 0 未満か、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

適用対象