我正在尝试将带有标题和一些文本的段落插入到 word 文档中。
一切正常,除了当我应用标题样式时,它会更改以下文本的样式,或者,当我将段落正文更改回“正常”时,它将标题更改回纯文本。我无法将它们识别为单独的段落,显然我做错了什么,但我看不出是什么。附上实际代码:-
Word.Paragraph p2 = wD.Paragraphs.Add(R.End);
Word.Range r2 = p2.Range;
r2.InsertAfter("If any updates were made then link to the follow on program "
+ curTarget.followOn + ".\n");
string style = "Normal";
object objStyle = style;
r2.set_Style(ref objStyle);
r2.InsertParagraphAfter();
Word.Paragraph p3 = wD.Paragraphs.Add(r2);
Word.Range r3 = p3.Range;
r3.Text = "Call follow on process.\n";
style = "Heading 4";
objStyle = style;
r3.set_Style(ref objStyle);
r2.InsertParagraphAfter();
为凌乱的代码道歉,但它被重新(de)分解了大约 20 次。