StylusPoint.HasProperty(StylusPointProperty) Méthode

Définition

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.

S’applique à