TabletDeviceCollection.Item[Int32] Property   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the TabletDevice object at the specified index within the collection.
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.TabletDeviceDefault Public ReadOnly Property Item(index As Integer) As TabletDeviceParameters
- index
- Int32
The zero-based index of the TabletDevice that is retrieved from the collection.
Property Value
The TabletDevice object at the specified index within the collection.
Exceptions
If index is less than 0 or index is greater than or equal to the number of TabletDeviceCollection objects in the collection.
Examples
The following example demonstrates the Item[] property.
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