DocX プロジェクトという単語文書を作成します。
パラグラフを右から左に設定する必要がありますが、どうすればよいかわかりません。
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);