Word 2010 内容控制换行

发布于 2024-10-28 02:46:09 字数 115 浏览 2 评论 0原文

我正在使用一些文本填充 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

瘫痪情歌 2024-11-04 02:46:09

我相信您可能需要为 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).aspx

If you've already done that, see Microsoft Word Document Controls not accepting carriage returns for a possible solution

给不了的爱 2024-11-04 02:46:09

你可以使用这样的东西:

private static Run InsertFormatRun(Run run, string[] formatText)
        {
            foreach (string text in formatText)
            {
                run.AppendChild(new Text(text));
                RunProperties runProps = run.AppendChild(new RunProperties());
                Break linebreak = new Break();
                runProps.AppendChild(linebreak);
            }
                return run;

        }

You could use something like this:

private static Run InsertFormatRun(Run run, string[] formatText)
        {
            foreach (string text in formatText)
            {
                run.AppendChild(new Text(text));
                RunProperties runProps = run.AppendChild(new RunProperties());
                Break linebreak = new Break();
                runProps.AppendChild(linebreak);
            }
                return run;

        }
千年*琉璃梦 2024-11-04 02:46:09

如果您使用的是 VBA,您正在搜索的是

vbNewLine

它将插入一个完整的换行符。

If you are using VBA, what you are searching for is

vbNewLine

which will insert a full line break.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文