TabletDevice Classe

Definizione

Rappresenta il dispositivo del digitalizzatore di 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
Ereditarietà

Esempio

Nell'esempio seguente viene illustrato come ottenere le proprietà supportate da un TabletDevice oggetto .

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())

Proprietà

ActiveSource

Ottiene PresentationSource che restituisce l'input corrente per la tavoletta.

Dispatcher

Ottiene l'oggetto Dispatcher associato a DispatcherObject.

(Ereditato da DispatcherObject)
Id

Ottiene l'identificatore univoco per la tavoletta nel sistema.

Name

Ottiene il nome della tavoletta corrente.

ProductId

Ottiene l'identificatore del prodotto per la tavoletta.

StylusDevices

Ottiene l'oggetto StylusDeviceCollection associato a questa tavoletta.

SupportedStylusPointProperties

Ottiene un insieme di oggetti StylusPointProperty supportati dall'oggetto TabletDevice.

TabletHardwareCapabilities

Ottiene l'oggetto TabletHardwareCapabilities per questa tavoletta.

Target

Ottiene IInputElement che fornisce l'elaborazione dell'input di base per la tavoletta.

Type

Ottiene l'oggetto TabletDeviceType della questa tavoletta.

Metodi

CheckAccess()

Determina se il thread chiamante ha accesso a DispatcherObject.

(Ereditato da DispatcherObject)
Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

(Ereditato da Object)
GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene l'oggetto Type dell'istanza corrente.

(Ereditato da Object)
MemberwiseClone()

Crea una copia superficiale dell'oggetto Object corrente.

(Ereditato da Object)
ToString()

Restituisce il nome della tavoletta.

VerifyAccess()

Impone che il thread chiamante abbia accesso a DispatcherObject.

(Ereditato da DispatcherObject)

Si applica a