FarEastLineBreakControl

ParagraphFormat.FarEastLineBreakControl property

获取或设置一个标志,指示东亚换行规则是否应用于当前段落。

public bool FarEastLineBreakControl { get; set; }

例子

展示如何设置亚洲版式的特殊属性。

Document doc = new Document(MyDir + "Document.docx");

ParagraphFormat format = doc.FirstSection.Body.FirstParagraph.ParagraphFormat;
format.FarEastLineBreakControl = true;
format.WordWrap = false;
format.HangingPunctuation = true;

doc.Save(ArtifactsDir + "ParagraphFormat.AsianTypographyProperties.docx");

也可以看看