TextBlock.GetPositionFromPoint(Point, Boolean) 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.
Retourne un TextPointer à la position la plus proche d'un Point spécifié.
public:
System::Windows::Documents::TextPointer ^ GetPositionFromPoint(System::Windows::Point point, bool snapToText);
public System.Windows.Documents.TextPointer GetPositionFromPoint (System.Windows.Point point, bool snapToText);
member this.GetPositionFromPoint : System.Windows.Point * bool -> System.Windows.Documents.TextPointer
Public Function GetPositionFromPoint (point As Point, snapToText As Boolean) As TextPointer
Paramètres
- point
- Point
Un Point dans l'espace de coordonnées du TextBlock pour lequel retourner un TextPointer.
- snapToText
- Boolean
true
pour retourner un TextPointer au point d'insertion le plus proche du point
, que le point
soit on non à l'intérieur du cadre englobant d'un caractère ; false
pour retourner null
si point
n'est pas à l'intérieur du cadre englobant d'un caractère.
Retours
TextPointer au point spécifié, ou null
si snapToText
a la valeur false
et si le point spécifié ne tombe pas à l'intérieur du cadre englobant d'un caractère dans la zone de contenu TextBlock.
Exceptions
Les informations relatives à la disposition actuelle et valide du contrôle ne sont pas disponibles.
Remarques
Cette méthode retourne toujours une valeur valide TextPointer quand snapToText
est true
.