StylusDevice.InRange 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 une valeur qui indique si le stylet est dans la plage du digitaliseur.
public:
property bool InRange { bool get(); };
public bool InRange { get; }
member this.InRange : bool
Public ReadOnly Property InRange As Boolean
Valeur de propriété
true si le stylet est dans la plage du digitaliseur ; sinon, false. La valeur par défaut est false.
Exemples
L’exemple suivant illustre la InRange propriété .
textbox1.AppendText("InRange: " + myStylusDevice.InRange.ToString() + "\n");
textbox1.AppendText("InRange: " + myStylusDevice.InRange.ToString() + vbCrLf)