TabletDeviceType Enumerazione

Definizione

Definisce valori per il tipo di dispositivi utilizzati dal dispositivo Tablet PC.

public enum class TabletDeviceType
public enum TabletDeviceType
type TabletDeviceType = 
Public Enum TabletDeviceType
Ereditarietà
TabletDeviceType

Campi

Stylus 0

Indica che il dispositivo Tablet PC è uno stilo.

Touch 1

Indica che il dispositivo Tablet PC è un touchscreen.

Esempio

Nell'esempio seguente viene illustrato come determinare il tipo di dispositivo tablet.

// 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

Si applica a