将我的段落设置为从右到左书写

时间:2013-11-24 12:03:38

标签: c# novacode-docx

我创建了一个单词文档DocX project

我需要从右到左设置我的paragrpah,但我不知道该怎么办?

string fileName = @"D:\Users\John\Documents\DocXExample.docx";

// Create a document in memory:
var doc = DocX.Create(fileName);

// Insert a paragrpah:
doc.InsertParagraph("This is my first paragraph");

// Save to the output directory:
doc.Save();

// Open in Word:
Process.Start("WINWORD.EXE", fileName);

1 个答案:

答案 0 :(得分:3)

我终于发现,我们应该使用类似的东西:

        Paragraph p = doc.InsertParagraph(subject);
        p.Direction=Direction.RightToLeft;