Word 2010 内容控制换行
我正在使用一些文本填充 Word 2010 中的内容控件。我无法让我的文本换行。我已经尝试过 '\n' 、'\r'、Environment.NewLine 并且它仍然出现在一行上。
我应该使用什么想法
I am populating a content control in word 2010 with some text. I can't get my text to go on a new line. I have tried '\n' ,'\r', Environment.NewLine and it still appears on one line.
Any ideas what I should be using
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信您可能需要为 CC 启用
MultiLine = True
。请参阅:http://msdn.microsoft.com/en-us/library/microsoft.office.tools.word.contentcontrol.multiline(v=VS.90).aspx如果您已完成此操作,请参阅Microsoft Word 文档控件不接受回车符获取可能的解决方案
I believe you may need to enable
MultiLine = True
for the CC. See: http://msdn.microsoft.com/en-us/library/microsoft.office.tools.word.contentcontrol.multiline(v=VS.90).aspxIf you've already done that, see Microsoft Word Document Controls not accepting carriage returns for a possible solution
你可以使用这样的东西:
You could use something like this:
如果您使用的是 VBA,您正在搜索的是
它将插入一个完整的换行符。
If you are using VBA, what you are searching for is
which will insert a full line break.