AvalonEdit - 可见文本
我尝试获取 avalonedit 控件的可见文本,但 VisualLines[]
仅使用 TextLines[]
处理自动换行,我不知道如何检查 TextLine 是否在可见区域与否。
如果我可以获得文本视图中可见文本的开始和结束偏移(或长度),但我没有找到这样的函数或成员,问题也将得到解决...
任何人都可以帮助我吗?谢谢
I try to get the visible text of the avalonedit control, but the VisualLines[]
only handles wordwrap with TextLines[]
and I dont know how to check if a TextLine is in the visible area or not.
The problem also would be solved if I can get the start- and endoffset (or length) of the visible text in the textview but I didnt find such a function or member...
Can anyone help me? Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
TextView.GetPosition
检索文本视图角点的文档位置:您可以使用
TextDocument.GetOffset
将 TextViewPosition 转换为偏移量。请注意,当指定点(在可见区域内)没有线条时,您可以返回null
,只有当可见区域的末尾位于文档末尾之后时,才会发生这种情况,因此您在这些情况下应该能够假定文档的结尾:但是,如果您愿意,您也可以直接使用 VisualLine/TextLines:
VisualLine.VisualTop
告诉您视觉行的开始位置( Y 坐标),VisualLine 中的每个 TextLine 都有一个Height
属性。使用这些,您可以确定哪些文本行可见,然后使用其GetCharacterHitFromDistance
方法检索视觉列,并使用VisualLine.GetRelativeOffset
计算相对于视觉对象的文本偏移量柱子。 (这就是TextView.GetPosition
方法正在做的事情)You can use
TextView.GetPosition
to retrieve the document position for the corners of the text view:You can use
TextDocument.GetOffset
to convert a TextViewPosition into an offset. Note that you can get backnull
when there is no line at the specified point - within the visible area, that should occur only if the end of the visible area is behind the end of the document, so you should be able to assume the end of the document in those cases:However, if you want to, you can also work directly with the VisualLine/TextLines:
VisualLine.VisualTop
tells you where a visual line starts (Y coordinate), and every TextLine within the VisualLine has aHeight
property. Using these, you can determine which text lines are visible, then use theirGetCharacterHitFromDistance
method to retrieve a visual column, and useVisualLine.GetRelativeOffset
to calculate the text offset from the visual column. (this is what theTextView.GetPosition
method is doing)