StylusPointPropertyInfo Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe StylusPointPropertyInfo.
Surcharges
StylusPointPropertyInfo(StylusPointProperty) |
Initialise une nouvelle instance de la classe StylusPointPropertyInfo. |
StylusPointPropertyInfo(StylusPointProperty, Int32, Int32, StylusPointPropertyUnit, Single) |
Initialise une nouvelle instance de la classe StylusPointPropertyInfo en utilisant les valeurs spécifiées. |
StylusPointPropertyInfo(StylusPointProperty)
Initialise une nouvelle instance de la classe StylusPointPropertyInfo.
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)
Paramètres
- stylusPointProperty
- StylusPointProperty
La StylusPointProperty sur laquelle baser le nouveau StylusPointProperty.
Exemples
L’exemple suivant montre comment créer un nouveau StylusPointPropertyInfo.
StylusPointPropertyInfo XTiltPropertyInfo =
new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation,
0, 3600, StylusPointPropertyUnit.Degrees, 10f);
Dim XTiltPropertyInfo As New StylusPointPropertyInfo( _
StylusPointProperties.XTiltOrientation, 0, 3600, _
StylusPointPropertyUnit.Degrees, 10.0F)
S’applique à
StylusPointPropertyInfo(StylusPointProperty, Int32, Int32, StylusPointPropertyUnit, Single)
Initialise une nouvelle instance de la classe StylusPointPropertyInfo en utilisant les valeurs spécifiées.
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)
Paramètres
- stylusPointProperty
- StylusPointProperty
La StylusPointProperty sur laquelle baser le nouveau StylusPointProperty.
- minimum
- Int32
La valeur minimale acceptée pour la propriété StylusPoint.
- maximum
- Int32
La valeur maximale acceptée pour la propriété StylusPoint.
Une des valeurs de l'objet StylusPointPropertyUnit.
- resolution
- Single
L’échelle qui convertit une valeur de propriété StylusPoint dans ses unités.
Exemples
L’exemple suivant montre comment créer un nouveau StylusPointPropertyInfo.
StylusPointPropertyInfo XTiltPropertyInfo =
new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation,
0, 3600, StylusPointPropertyUnit.Degrees, 10f);
Dim XTiltPropertyInfo As New StylusPointPropertyInfo( _
StylusPointProperties.XTiltOrientation, 0, 3600, _
StylusPointPropertyUnit.Degrees, 10.0F)