WordWrap

ParagraphFormat.WordWrap property

如果此属性是错误的 单词中间的拉丁文本可以换行 for 当前段落。否则拉丁文本将被整个单词包围。

public bool WordWrap { 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");

也可以看看