4

如何在 C# 中使用 OpenXML 为 word 中的段落设置从右到左的方向?我使用下面的代码来定义它,但它们不会做任何改变:

 RunProperties rPr = new RunProperties();

 Style style = new Style();
 style.StyleId = "my_style";
 style.Append(new Justification() { Val = JustificationValues.Right });
 style.Append(new TextDirection() { Val = TextDirectionValues.TopToBottomRightToLeft });
 style.Append(rPr);

最后,我将为我的段落设置这种样式:

...
heading_pPr.ParagraphStyleId = new ParagraphStyleId() { Val = "my_style" };

但是在输出文件中没有看到任何变化。

我找到了一些帖子,但他们根本没有帮助我,比如:

更改word文件中的文本方向

如何解决这个问题?

提前致谢。

4

2 回答 2

5

使用BiDi该类将段落的文本方向设置为 RTL。以下代码示例在 word 文档中搜索第一段,并使用BiDi类将文本方向设置为 RTL:

using (WordprocessingDocument doc =
   WordprocessingDocument.Open(@"test.docx", true))
{
  Paragraph p = doc.MainDocumentPart.Document.Body.ChildElements.First<Paragraph>();

  if(p == null)
  {
    Console.Out.WriteLine("Paragraph not found.");
    return;
  }

  ParagraphProperties pp = p.ChildElements.First<ParagraphProperties>();

  if (pp == null)
  {
    pp = new ParagraphProperties();
    p.InsertBefore(pp, p.First());
  }

  BiDi bidi = new BiDi();
  pp.Append(bidi);

}

Microsoft Word 中的双向文本还有几个方面。 SanjayKumarM写了一篇关于如何在 Microsoft Word 中处理从右到左的文本内容的文章。有关更多信息,请参阅链接。

于 2013-03-18T19:12:24.740 回答
1

这段代码对我有用,可以设置从右到左的方向

var run = new Run(new Text("Some text"));
var paragraph = new DocumentFormat.OpenXml.Wordprocessing.Paragraph(run);
paragraph.ParagraphProperties = new ParagraphProperties()
{
    BiDi = new BiDi(),
    TextDirection = new TextDirection()
    {
        Val = TextDirectionValues.TopToBottomRightToLeft
    }
};
于 2019-01-29T03:05:35.250 回答