TabletDeviceType Enumeración

Definición

Define los valores del tipo de dispositivo que utiliza el dispositivo de tableta gráfica.

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

Campos

Stylus 0

Indica que el dispositivo de tableta gráfica es un lápiz.

Touch 1

Indica que el dispositivo de tableta gráfica es una pantalla táctil.

Ejemplos

En el ejemplo siguiente se muestra cómo determinar el tipo de dispositivo de tableta.

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

Se aplica a