2017-11-29 16 views

答えて

0

私は

builder.ParagraphFormat.Alignment = ParagraphAlignment.Left

と働いていたに

builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;

をchnaged。

0

Bidi文の後にアライメントを移動してみますか?

+0

ありがとうございます。動作しませんでした –

0

次のコードを使用してみてください。

Document doc = new Document(); 
DocumentBuilder builder = new DocumentBuilder(doc); 

// Signal to Microsoft Word that this run of text contains right-to-left text. 
builder.Font.Bidi = true; 
builder.CurrentParagraph.ParagraphFormat.Bidi = true; 

builder.Font.LocaleIdBi = 1025; 

// Insert some Arabic text. 
builder.Writeln("هذا كتاب."); 

doc.Save("D:\\Temp\\17.11.docx"); 

は、私が開発者エバンジェリストとしてのAsposeで動作します。

関連する問題