将 \\scaps 放入 RTF 中以表示小型大写字母
我在 C# 2.0 中使用动态 RichTextBox 控件,我想在 RTF 中插入“\scaps”,这样,如果以编程方式保存文件,然后在 MS-Word 中打开,某些文本会显示为小写字母。
谁能告诉我如何插入标签的代码?
I'm using dynamic RichTextBox control in C# 2.0 and I want to insert "\scaps" in RTF so that if the file is saved programatically and then opened in MS-Word certain text be seen smallcaps.
Can anyone tell me the code as how to insert the tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您可以通过富文本框上的
Rtf
属性直接访问富文本。Well, you can access the rich text directly through the
Rtf
property on the rich text box.