AvalonEdit - 可见文本

发布于 2024-09-28 23:57:42 字数 212 浏览 2 评论 0原文

我尝试获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的他你的她 2024-10-05 23:57:42

您可以使用 TextView.GetPosition 检索文本视图角点的文档位置:

TextViewPosition? start = textView.GetPosition(new Point(0, 0) + textView.ScrollOffset);
TextViewPosition? end = textView.GetPosition(new Point(textView.ActualWidth, textView.ActualHeight) + textView.ScrollOffset);

您可以使用 TextDocument.GetOffset 将 TextViewPosition 转换为偏移量。请注意,当指定点(在可见区域内)没有线条时,您可以返回 null,只有当可见区域的末尾位于文档末尾之后时,才会发生这种情况,因此您在这些情况下应该能够假定文档的结尾:

int startOffset = start != null ? document.GetOffset(start.Value.Location) : document.TextLength;
int endOffset = end != null ? document.GetOffset(end.Value.Location) : document.TextLength;

但是,如果您愿意,您也可以直接使用 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:

TextViewPosition? start = textView.GetPosition(new Point(0, 0) + textView.ScrollOffset);
TextViewPosition? end = textView.GetPosition(new Point(textView.ActualWidth, textView.ActualHeight) + textView.ScrollOffset);

You can use TextDocument.GetOffset to convert a TextViewPosition into an offset. Note that you can get back null 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:

int startOffset = start != null ? document.GetOffset(start.Value.Location) : document.TextLength;
int endOffset = end != null ? document.GetOffset(end.Value.Location) : document.TextLength;

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 a Height property. Using these, you can determine which text lines are visible, then use their GetCharacterHitFromDistance method to retrieve a visual column, and use VisualLine.GetRelativeOffset to calculate the text offset from the visual column. (this is what the TextView.GetPosition method is doing)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文