StylusPoint.HasProperty(StylusPointProperty) Méthode
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.
Retourne si le StylusPoint actuel contient la propriété spécifiée.
public:
bool HasProperty(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
public bool HasProperty (System.Windows.Input.StylusPointProperty stylusPointProperty);
member this.HasProperty : System.Windows.Input.StylusPointProperty -> bool
Public Function HasProperty (stylusPointProperty As StylusPointProperty) As Boolean
Paramètres
- stylusPointProperty
- StylusPointProperty
StylusPointProperty à vérifier dans StylusPoint.
Retours
true
si le StylusPointProperty spécifié se trouve dans le StylusPoint en cours ; sinon, false
.
Exemples
L’exemple suivant vérifie l’existence d’une propriété de point de stylet avant d’obtenir la valeur de la propriété. Cet exemple suppose qu’il existe un StylusPoint appelé point
.
if (point.HasProperty(StylusPointProperties.PitchRotation))
{
int pitchRotation = point.GetPropertyValue(StylusPointProperties.PitchRotation);
}
If point.HasProperty(StylusPointProperties.PitchRotation) Then
Dim pitchRotation As Integer = _
point.GetPropertyValue(StylusPointProperties.PitchRotation)
End If
Remarques
Pour case activée si contient StylusPoint la propriété spécifiée, appelez le HasProperty avant d’appeler la GetPropertyValue méthode ou la SetPropertyValue méthode.