HangingPunctuation

ParagraphFormat.HangingPunctuation property

Ruft ein Flag ab oder setzt es, das angibt, ob hängende Satzzeichen für den aktuellen Absatz aktiviert sind.

public bool HangingPunctuation { get; set; }

Beispiele

Zeigt, wie spezielle Eigenschaften für asiatische Typografie festgelegt werden.

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");

Siehe auch