Greetings collective wonderfolk of the internet.
I'm trying to underline specific words in a TEdit (actually a TNxEdit from Berg NextSuite - but it's a derivative of TEdit). However in order to do this I need to know the pixel coordinates of said word.
This is fairly easy to do if the start of the text is visible, however I can't work out how to do it if the start of the text has been scrolled off the end.
Is there some way of determining the exact coordinates of a given word directly? Failing that, determining which text is visible in the edit and which isn't? Or some other ingenious method.
Edit1: To cover some of the current answers:
The requirements are to implement a spell checker on a column of a TNxGrid component, which limits me to TNxEdit. If I could choose which component I used I would have switched by now :(
I can do the drawing the line. TNxEdit has a canvas that allows me to draw the underline quite happily providing I can work out the correct coordinates.
If the start of the edit text is visible, i.e. there's no scrolling off the front, then I can determine the correct start position and the length of the line using TextExtent.
The issue comes in the scenario where the start of the text has scrolled off the front. Not being able to determine how much is scrolled off the front means I can't work out the starting position for the line. The length of the line becomes a problem if the word I want to highlight is also partially scrolled.