StylusPointPropertyInfo Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der StylusPointPropertyInfo-Klasse.
Überlädt
StylusPointPropertyInfo(StylusPointProperty) |
Initialisiert eine neue Instanz der StylusPointPropertyInfo-Klasse. |
StylusPointPropertyInfo(StylusPointProperty, Int32, Int32, StylusPointPropertyUnit, Single) |
Initialisiert eine neue Instanz der StylusPointPropertyInfo-Klasse unter Verwendung der angegebenen Werte. |
StylusPointPropertyInfo(StylusPointProperty)
Initialisiert eine neue Instanz der StylusPointPropertyInfo-Klasse.
public:
StylusPointPropertyInfo(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
public StylusPointPropertyInfo (System.Windows.Input.StylusPointProperty stylusPointProperty);
new System.Windows.Input.StylusPointPropertyInfo : System.Windows.Input.StylusPointProperty -> System.Windows.Input.StylusPointPropertyInfo
Public Sub New (stylusPointProperty As StylusPointProperty)
Parameter
- stylusPointProperty
- StylusPointProperty
Die StylusPointProperty, die als Basis der neuen StylusPointProperty dient.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie eine neue StylusPointPropertyInfoerstellt wird.
StylusPointPropertyInfo XTiltPropertyInfo =
new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation,
0, 3600, StylusPointPropertyUnit.Degrees, 10f);
Dim XTiltPropertyInfo As New StylusPointPropertyInfo( _
StylusPointProperties.XTiltOrientation, 0, 3600, _
StylusPointPropertyUnit.Degrees, 10.0F)
Gilt für:
StylusPointPropertyInfo(StylusPointProperty, Int32, Int32, StylusPointPropertyUnit, Single)
Initialisiert eine neue Instanz der StylusPointPropertyInfo-Klasse unter Verwendung der angegebenen Werte.
public:
StylusPointPropertyInfo(System::Windows::Input::StylusPointProperty ^ stylusPointProperty, int minimum, int maximum, System::Windows::Input::StylusPointPropertyUnit unit, float resolution);
public StylusPointPropertyInfo (System.Windows.Input.StylusPointProperty stylusPointProperty, int minimum, int maximum, System.Windows.Input.StylusPointPropertyUnit unit, float resolution);
new System.Windows.Input.StylusPointPropertyInfo : System.Windows.Input.StylusPointProperty * int * int * System.Windows.Input.StylusPointPropertyUnit * single -> System.Windows.Input.StylusPointPropertyInfo
Public Sub New (stylusPointProperty As StylusPointProperty, minimum As Integer, maximum As Integer, unit As StylusPointPropertyUnit, resolution As Single)
Parameter
- stylusPointProperty
- StylusPointProperty
Die StylusPointProperty, die als Basis der neuen StylusPointProperty dient.
- minimum
- Int32
Der zulässige Mindestwert für die StylusPoint-Eigenschaft.
- maximum
- Int32
Der zulässige Höchstwert für die StylusPoint-Eigenschaft.
Einer der StylusPointPropertyUnit-Werte.
- resolution
- Single
Der Maßstab, nach dem ein StylusPoint-Eigenschaftswert in seine Einheiten konvertiert wird.
Beispiele
Im folgenden Beispiel wird veranschaulicht, wie eine neue StylusPointPropertyInfoerstellt wird.
StylusPointPropertyInfo XTiltPropertyInfo =
new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation,
0, 3600, StylusPointPropertyUnit.Degrees, 10f);
Dim XTiltPropertyInfo As New StylusPointPropertyInfo( _
StylusPointProperties.XTiltOrientation, 0, 3600, _
StylusPointPropertyUnit.Degrees, 10.0F)