TabletDeviceType Sabit listesi

Tanım

Tablet cihazının kullandığı cihazların türü için değerleri tanımlar.

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

Alanlar

Stylus 0

Tablet cihazının ekran kalemi olduğunu gösterir.

Touch 1

Tablet cihazının dokunmatik ekran olduğunu gösterir.

Örnekler

Aşağıdaki örnekte tablet cihazının türünün nasıl belirleneceği gösterilmektedir.

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

Şunlara uygulanır