我创建了一个单词文档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);
答案 0 :(得分:3)
我终于发现,我们应该使用类似的东西:
Paragraph p = doc.InsertParagraph(subject);
p.Direction=Direction.RightToLeft;