RichTextBox.GetPositionFromPoint(Point, Boolean) Method

Definition

Returns a TextPointer that points to the insertion point closest to the specified position.

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

Parameters

point
Point

A Point object specifying the position to retrieve a TextPointer for.

snapToText
Boolean

If true, this method always returns a TextPointer specifying the closest insertion position for the Point specified, regardless or whether or not the supplied Point is inside a character's bounding box.

If false, this method returns null if the specified Point does not fall within any character bounding box.

Returns

A TextPointer specifying the closest insertion position for the supplied point, or null if snapToText is false and the supplied Point is not within any character's bounding box. Note that the TextPointer returned is usually the position between two characters. Use the LogicalDirection property of the returned TextPointer to determine which of the two characters the TextPointer corresponds to.

Exceptions

Raised if layout information for the RichTextBox is not current.

Remarks

RichTextBox uses a standard coordinate system with the origin located at the upper-left corner of the RichTextBox.

Applies to