I get selection range like this:

var
  Range: IHTMLTxtRange;
begin
  if Supports((Document as IHTMLDocument2).selection.createRange,
    IHTMLTxtRange, Range)
end;

TWebBrowser in editing. I need get position of cursor. How I can get its?

link|improve this question

56% accept rate
feedback

1 Answer

IHTMLTxtRange defines several attributes to get what you need.

But the key items are boundingLeft and boundingTop

This link has some details on how it works as well.

link|improve this answer
I need find position cursor in characters from begin of string.Not coordinante in pixel. – cemick Apr 13 '10 at 5:28
Do you need visible characters or source characters? – NineBerry Apr 13 '10 at 13:57
visible, not html source – cemick Apr 13 '10 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.