Trichedit 到 Rave 备忘录缓冲区
如何将 TRichEdit
的格式化内容放入 Rave 备忘录缓冲区 TMemoBuf
中?
How do I put formatted content of a TRichEdit
into a Rave memo buffer, TMemoBuf
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
Lines.SaveToStream
函数从TRichEdit
组件获取格式化文本 (rtf) 并使用TMemoBuf.RTFLoadFromStream
函数将 rtf 文本加载到TMemoBuf
中。You must use the
Lines.SaveToStream
function from theTRichEdit
component to get the Formated text (rtf) and the use theTMemoBuf.RTFLoadFromStream
function to load the rtf text into theTMemoBuf
.