TabletDeviceCollection.Item[Int32] Property
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.TabletDevice
Default Public ReadOnly Property Item(index As Integer) As TabletDevice
- index
- Int32
The zero-based index of the TabletDevice that is retrieved from the collection.
The TabletDevice object at the specified index within the collection.
If index
is less than 0 or index
is greater than or equal to the number of TabletDeviceCollection objects in the collection.
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
Product | Versions |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: