AutomationElement.TryGetClickablePoint(Point) 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.
Récupère un point de l'élément sur lequel l'utilisateur peut cliquer.
public:
bool TryGetClickablePoint([Runtime::InteropServices::Out] System::Windows::Point % pt);
public bool TryGetClickablePoint (out System.Windows.Point pt);
member this.TryGetClickablePoint : Point -> bool
Public Function TryGetClickablePoint (ByRef pt As Point) As Boolean
Paramètres
- pt
- Point
Cette méthode retourne les coordonnées d'écran physiques d'un point interactif.
Retours
true
s'il y a un point qui est interactif ; sinon, false
.
Exemples
L’exemple suivant tente de récupérer un point clickable sur un AutomationElement.
// element is an AutomationElement.
System.Windows.Point pt;
bool clickable = element.TryGetClickablePoint(out pt);
' element is an AutomationElement.
Dim pt As System.Windows.Point
Dim clickable As Boolean = element.TryGetClickablePoint(pt)
Remarques
Un AutomationElement n’est pas clickable s’il est complètement masqué par une autre fenêtre.