从 RichEdit 复制编号列表?
当您向选择了编号列表的 RichEdit 控件发送 WM_COPY 消息时, 然后将文本粘贴到记事本中,不包括数字。有什么办法可以得到它们吗? 谢谢!
When you send a WM_COPY message to a RichEdit control having a numbered list selected,
and then paste the text into Notepad, the numbers are not included. Is there any way to get them?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会获得编号列表,因为记事本不支持文本格式,例如项目符号、粗体、编号等。
目标应用程序必须支持富文本。从 RichEdit 复制并粘贴到 Wordpad、MS Word、Html 编辑器中效果很好。
谢谢。
You don't get the numbered list because Notepad does not support text formatting such as bullets, bold, numbering etc.
The target application must support rich text. Copying from RichEdit and pasting in Wordpad, MS Word, Html Editor works well.
Thanks.