如何在 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" };
但是在输出文件中没有看到任何变化。
我找到了一些帖子,但他们根本没有帮助我,比如:
如何解决这个问题?
提前致谢。