TabletDevice Clase

Definición

Representa el dispositivo del digitalizador de un Tablet PC.

public ref class TabletDevice sealed : System::Windows::Input::InputDevice
public sealed class TabletDevice : System.Windows.Input.InputDevice
type TabletDevice = class
    inherit InputDevice
Public NotInheritable Class TabletDevice
Inherits InputDevice
Herencia

Ejemplos

En el ejemplo siguiente se muestra cómo obtener las propiedades que admite un TabletDevice .

TabletDevice currentTablet = Tablet.CurrentTabletDevice;
ReadOnlyCollection<StylusPointProperty> supportedProperties = 
    currentTablet.SupportedStylusPointProperties;

StringWriter properties = new StringWriter();

foreach (StylusPointProperty property in supportedProperties)
{
    properties.WriteLine(property.ToString());
}

MessageBox.Show(properties.ToString());
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())

Propiedades

ActiveSource

Obtiene el objeto PresentationSource que proporciona la entrada actual al dispositivo de tableta gráfica.

Dispatcher

Obtiene el objeto Dispatcher al que está asociado DispatcherObject.

(Heredado de DispatcherObject)
Id

Obtiene el identificador único del dispositivo de tableta gráfica del sistema.

Name

Obtiene el nombre del dispositivo de tableta gráfica.

ProductId

Obtiene el identificador de producto del dispositivo de tableta gráfica.

StylusDevices

Obtiene la colección StylusDeviceCollection asociada al dispositivo de tableta gráfica.

SupportedStylusPointProperties

Obtiene una colección de objetos StylusPointProperty compatibles con TabletDevice.

TabletHardwareCapabilities

Obtiene el objeto TabletHardwareCapabilities del dispositivo de tableta gráfica.

Target

Obtiene el objeto IInputElement que proporciona el procesamiento de entrada básico del dispositivo de tableta gráfica.

Type

Obtiene el objeto TabletDeviceType del dispositivo de tableta gráfica.

Métodos

CheckAccess()

Determina si el subproceso de la llamada tiene acceso a DispatcherObject.

(Heredado de DispatcherObject)
Equals(Object)

Determina si el objeto especificado es igual que el objeto actual.

(Heredado de Object)
GetHashCode()

Sirve como la función hash predeterminada.

(Heredado de Object)
GetType()

Obtiene el Type de la instancia actual.

(Heredado de Object)
MemberwiseClone()

Crea una copia superficial del Object actual.

(Heredado de Object)
ToString()

Devuelve el nombre del dispositivo de tableta gráfica.

VerifyAccess()

Exige que el subproceso de la llamada tenga acceso a DispatcherObject.

(Heredado de DispatcherObject)

Se aplica a