在编辑模式下检测 TWebBrowser 中的光标位置
我得到这样的选择范围:
var
Range: IHTMLTxtRange;
begin
if Supports((Document as IHTMLDocument2).selection.createRange,
IHTMLTxtRange, Range)
end;
TWebBrowser 正在编辑。我需要获取光标的位置。我怎样才能得到它?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IHTMLTxtRange 定义了几个属性来获取您需要的内容。
但关键项目是boundingLeft和boundingTop
此链接还有一些关于它如何工作的细节。
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.