This documentation is archived and is not being maintained.
Tablets Class
Visual Studio 2008
Contains the Tablet objects that represent the hardware-specific properties of all tablets that are attached to the system.
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
In this example, the ListBox object listBoxTablets is populated with the name of each tablet device that is attached to the system.
' Calling the constructor automatically fills the ' Tablets collection with the available Tablet objects. Dim allTablets As Tablets = New Tablets() ' clear the list box Me.listBoxTablets.Items.Clear() ' populate the list box with the name of each tablet ' version using For Each For Each T As Tablet In allTablets Me.listBoxTablets.Items.Add(T.Name) Next
Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: