TabletDevice Class
Represents the digitizer device of a Tablet PC.
Assembly: PresentationCore (in PresentationCore.dll)
System.Windows.Threading.DispatcherObject
System.Windows.Input.InputDevice
System.Windows.Input.TabletDevice
| Name | Description | |
|---|---|---|
![]() | ActiveSource | Gets the PresentationSource that reports current input for the tablet device.(Overrides InputDevice.ActiveSource.) |
![]() | Dispatcher | Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject.) |
![]() | Id | Gets the unique identifier for the tablet device on the system. |
![]() | Name | Gets the name of the tablet device. |
![]() | ProductId | Gets the product identifier for the tablet device. |
![]() | StylusDevices | Gets the StylusDeviceCollection associated with the tablet device. |
![]() | SupportedStylusPointProperties | Gets a collection of StylusPointProperty objects that the TabletDevice supports. |
![]() | TabletHardwareCapabilities | Gets the TabletHardwareCapabilities for the tablet device. |
![]() | Target | Gets the IInputElement that provides basic input processing for the tablet device.(Overrides InputDevice.Target.) |
![]() | Type | Gets the TabletDeviceType of the tablet device. |
| Name | Description | |
|---|---|---|
![]() | CheckAccess() | Determines whether the calling thread has access to this DispatcherObject.(Inherited from DispatcherObject.) |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns the name of the tablet device.(Overrides Object.ToString().) |
![]() | VerifyAccess() | Enforces that the calling thread has access to this DispatcherObject.(Inherited from DispatcherObject.) |
The following example demonstrates how to get the properties that a TabletDevice supports.
Dim currentTablet As TabletDevice = Tablet.CurrentTabletDevice Dim supportedProperties As ReadOnlyCollection(Of StylusPointProperty) _ = currentTablet.SupportedStylusPointProperties Dim properties As New StringWriter() For Each supportedProperty As StylusPointProperty In supportedProperties properties.WriteLine(supportedProperty.ToString()) Next supportedProperty MessageBox.Show(properties.ToString())
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

