StylusButton.StylusDevice Eigenschaft

Definition

Ruft den Tablettstift ab, zu dem diese Schaltfläche gehört.

public:
 property System::Windows::Input::StylusDevice ^ StylusDevice { System::Windows::Input::StylusDevice ^ get(); };
public System.Windows.Input.StylusDevice StylusDevice { get; }
member this.StylusDevice : System.Windows.Input.StylusDevice
Public ReadOnly Property StylusDevice As StylusDevice

Eigenschaftswert

Ein StylusDevice, das den Tablettstift des aktuellen StylusButton darstellt.

Beispiele

Im folgenden Beispiel wird die StylusDevice -Eigenschaft veranschaulicht.

// Get the name of the StylusDevice to which the StylusButton is attached
textbox1.AppendText("StylusButton.StylusDevice: " + myStylusButton.StylusDevice.Name + "\n");
' Get the name of the StylusDevice to which the StylusButton is attached
textbox1.AppendText("StylusButton.StylusDevice: " + myStylusButton.StylusDevice.Name + vbCrLf)

Gilt für: