RTF Datawindow 和 RTF Control Content 如何按颜色、字体名称查找文本?
我将 RTF 文件格式存储在我的 ASA 数据库中。
如何使用颜色或字体名称、对齐方式选择内容。 例如:
我有一个内容,它有 100 行,中间有格式化文本,它包含蓝色的文本,我需要通过给出颜色“蓝色”来动态选择,
这可能吗?
i stored the RTF file format in my ASA database.
How to select the content by using the color or Font name, Alignment.
for ex:
i have a content it has 100 lines with formatted text in between it contains the text which is in blue color, i need to select dynamically by giving the color "blue"
is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 RTF 中,顶部有一个颜色表,它定义了使用的所有颜色。
仅定义蓝色时,它看起来像这样:
然后在实际文本中,您可以使用
\cf1
更改为第一个定义的颜色,并使用\cf0
更改回来变为黑色,如下所示:(\par
表示段落)In RTF, you have a colour table at the top which defines all the colours used.
With only blue defined, it will look something like this:
Then in the actual text, you have
\cf1
to change to the first defined colour, and\cf0
to change back to black, like this:(
\par
means paragraph)