Method ScreenToText
ScreenToText(Point)
When implemented by a class, converts given screen coordinates to text coordinates (index of line and character).
Point ScreenToText(Point position)
Parameters
position
PointThe screen coordinate Point to convert.
Returns
- Point
The Point representing text coordinate.
ScreenToText(int, int)
When implemented by a class, converts given screen coordinates to text coordinates (index of line and character).
Point ScreenToText(int x, int y)
Parameters
Returns
- Point
The Point representing text coordinate.
ScreenToText(int, int, ref bool)
When implemented by a class, converts given screen coordinates to text coordinates (index of line and character).
Point ScreenToText(int x, int y, ref bool lineEnd)
Parameters
x
intHorizontal screen coordinate to convert.
y
intVertical screen coordinate to convert.
lineEnd
boolReceives boolean value indicating if the caret is at the line end of the wrapped line.
Returns
- Point
The Point representing text coordinate.