IncrementalHitTester.IsValid Propriété
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.
Obtient si le IncrementalHitTester effectue un test d'atteinte.
public:
property bool IsValid { bool get(); };
public bool IsValid { get; }
member this.IsValid : bool
Public ReadOnly Property IsValid As Boolean
Valeur de propriété
true
si le IncrementalHitTester effectue un test d'atteinte ; sinon, false
.
Exemples
L’exemple suivant montre comment vérifier si l’élément IncrementalHitTester est valide avant d’ajouter des points à celui-ci. Cet exemple suppose qu’il existe un IncrementalHitTester appel eraseTester
.
// Collect the StylusPackets as the stylus moves.
protected override void OnStylusMove(StylusEventArgs e)
{
if (eraseTester.IsValid)
{
eraseTester.AddPoints(e.GetStylusPoints(this));
}
}
' Collect the StylusPackets as the stylus moves.
Protected Overrides Sub OnStylusMove(ByVal e As StylusEventArgs)
If eraseTester.IsValid Then
eraseTester.AddPoints(e.GetStylusPoints(Me))
End If
End Sub
Remarques
true
Retour IsValid jusqu’à EndHitTesting ce qu’il soit appelé. Il retourne false
ensuite .