RichEditCtrl及其文本内容
我将所有格式化的富编辑文本复制到剪贴板中,
m_edit.setsel(0,-1);
m_edit.copy();
但当我调用 GetClipboardData
时, 我获得没有格式的文本。 有人可以向我解释一下这件事吗?
I copy all formatted rich edit text into clipboard as
m_edit.setsel(0,-1);
m_edit.copy();
But when I call GetClipboardData
,
I obtain text without format.
Someone could explain to me something about this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你错了。复制方法向控件发送 WM_COPY 消息。这会将格式化文本和纯文本放置在剪贴板上。查看剪贴板上的所有格式,您会发现存在 RTF。
I think you are mistaken. The copy method sends a WM_COPY message to the control. This will place formatted text as well as plain text on the clipboard. Look through all the formats on the clipboard and you will find RTF is present.