Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到这样的选择范围:
var Range: IHTMLTxtRange; begin if Supports((Document as IHTMLDocument2).selection.createRange, IHTMLTxtRange, Range) end;
TWebBrowser 正在编辑中。我需要获取光标的位置。我怎样才能得到它?
IHTMLTxtRange定义了几个属性来获得你需要的东西。
但关键项目是 boundingLeft 和 boundingTop
这个链接也有一些关于它如何工作的细节。