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