Partilhar via


IncrementalHitTester.IsValid Propriedade

Definição

Obtém se o IncrementalHitTester está realizando teste de clique.

public:
 property bool IsValid { bool get(); };
public bool IsValid { get; }
member this.IsValid : bool
Public ReadOnly Property IsValid As Boolean

Valor da propriedade

Boolean

true se o IncrementalHitTester teste de ocorrência for atingido; caso contrário, false.

Exemplos

O exemplo a seguir demonstra como verificar se o IncrementalHitTester valor é válido antes de adicionar pontos a ele. Este exemplo pressupõe que haja um IncrementalHitTester chamado 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

Comentários

O IsValid retorno true até EndHitTesting ser chamado. Em seguida, ele retorna false.

Aplica-se a