更改 JFace TextViewer 中多个文本的背景

发布于 2024-12-14 01:37:09 字数 147 浏览 1 评论 0原文

是否可以以编程方式更改 TextViewer 中多个文本的背景?例如,我的 TextViewer 文档中有一个重复多次的单词。我想改变它的背景颜色。 我尝试添加 LineBackgroundListener。但这改变了整条线的背景。我只要求所选文本具有不同的背景颜色。 这可能吗?

Is it possible to programatically change the background of multiple text in a TextViewer? For example, I have a word in my TextViewer document that is repeated several times. I would like to change the background colour of that.
I have tried adding LineBackgroundListener. But this changes the background of the whole line. I require only the chosen text to have a different background colour.
Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冰雪梦之恋 2024-12-21 01:37:09

是:使用您想要的背景创建一个 StyleRange ,然后使用 setStyleRanges(int[] rates, StyleRange[] styles) 应用它,其中 ranges是一个int对列表(styles参数中每个范围的开始和结束),styles是一个长度为ranges.length/2<的数组/代码>。只需重复相同的风格范围N次即可。

Yes: Create a StyleRange with the background you want and then apply it with setStyleRanges(int[] ranges, StyleRange[] styles) where ranges is a list of int-pairs (start and end of each range in the styles argument) and styles is an array with the length ranges.length/2. Just repeat the same style range N times.

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