TabletDeviceType Enumeration

Definition

Definiert Werte für den Gerätetyp, der vom Tablettgerät verwendet wird.

public enum class TabletDeviceType
public enum TabletDeviceType
type TabletDeviceType = 
Public Enum TabletDeviceType
Vererbung
TabletDeviceType

Felder

Stylus 0

Gibt an, dass das Tablettgerät ein Tablettstift ist.

Touch 1

Gibt an, dass das Tablettgerät ein Touchscreen ist.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie der Typ des Tablet-Geräts bestimmt wird.

// Get the type of tablet device
TabletDeviceType myTabletDeviceType = myTabletDevice.Type;

// Display the type of tablet device
textbox1.AppendText("Type: ");

switch (myTabletDeviceType)
{
    case TabletDeviceType.Stylus:
        textbox1.AppendText("Stylus\n");
        break;

    default: // TabletDeviceType.Touch:
        textbox1.AppendText("Touch Pad\n");
        break;
}
' Get the type of tablet device
Dim myTabletDeviceType As TabletDeviceType = myTabletDevice.Type

' Display the type of tablet device
textbox1.AppendText("Type: ")

Select Case myTabletDeviceType
    Case TabletDeviceType.Stylus
        textbox1.AppendText("Stylus" & vbCrLf)
    Case Else ' TabletDeviceType.Touch
        textbox1.AppendText("Touch pad" & vbCrLf)
End Select

Gilt für: