StylusPointProperty Konstruktoren

Definition

Initialisiert eine neue Instanz der StylusPointProperty-Klasse.

Überlädt

StylusPointProperty(StylusPointProperty)

Initialisiert eine neue Instanz der StylusPointProperty-Klasse, indem der angegebene StylusPointProperty-Wert kopiert wird.

StylusPointProperty(Guid, Boolean)

Initialisiert eine neue Instanz der StylusPointProperty-Klasse mit der angegebenen GUID.

StylusPointProperty(StylusPointProperty)

Initialisiert eine neue Instanz der StylusPointProperty-Klasse, indem der angegebene StylusPointProperty-Wert kopiert wird.

protected:
 StylusPointProperty(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
protected StylusPointProperty (System.Windows.Input.StylusPointProperty stylusPointProperty);
new System.Windows.Input.StylusPointProperty : System.Windows.Input.StylusPointProperty -> System.Windows.Input.StylusPointProperty
Protected Sub New (stylusPointProperty As StylusPointProperty)

Parameter

stylusPointProperty
StylusPointProperty

Das StylusPointProperty, das kopiert werden soll.

Gilt für:

StylusPointProperty(Guid, Boolean)

Initialisiert eine neue Instanz der StylusPointProperty-Klasse mit der angegebenen GUID.

public:
 StylusPointProperty(Guid identifier, bool isButton);
public StylusPointProperty (Guid identifier, bool isButton);
new System.Windows.Input.StylusPointProperty : Guid * bool -> System.Windows.Input.StylusPointProperty
Public Sub New (identifier As Guid, isButton As Boolean)

Parameter

identifier
Guid

Die Guid, die die StylusPointProperty eindeutig bezeichnet.

isButton
Boolean

true, um anzugeben, dass die Eigenschaft eine Schaltfläche des Tablettstifts darstellt, andernfalls false.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie eine neue StylusPointPropertyerstellt wird.

Guid guid = new Guid("12345678-1234-1234-1234-123456789012");
StylusPointProperty newlyDefinedProperty = new StylusPointProperty(guid, false);
Dim guid As New Guid("12345678-1234-1234-1234-123456789012")
Dim newlyDefinedProperty As New StylusPointProperty(guid, False)

Gilt für: