我遵循這個結構來將字符串中的文本添加到OpenXML運行中,它們是Word文檔的一部分。如何在OpenXML中使用格式保留字符串段落,運行,文本?
該字符串具有新的行格式,甚至段落縮進,但是當文本插入到運行中時,這些全部都會被剝離。我該如何保存它?
Body body = wordprocessingDocument.MainDocumentPart.Document.Body;
String txt = "Some formatted string! \r\nLook there should be a new line here!\r\n\r\nAndthere should be 2 new lines here!"
// Add new text.
Paragraph para = body.AppendChild(new Paragraph());
Run run = para.AppendChild(new Run());
run.AppendChild(new Text(txt));
備註:帶有新線條的段落聽起來很奇怪。你確定這是你最終需要實現的嗎? –