HangingPunctuation
ParagraphFormat.HangingPunctuation property
获取或设置一个标志,指示当前段落是否启用悬挂标点符号。
public bool HangingPunctuation { 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");
也可以看看
- class ParagraphFormat
- 命名空间 Aspose.Words
- 部件 Aspose.Words