HangingPunctuation

ParagraphFormat.HangingPunctuation property

Ottiene o imposta un flag che indica se la punteggiatura sporgente è abilitata per il paragrafo corrente.

public bool HangingPunctuation { get; set; }

Esempi

Mostra come impostare proprietà speciali per la tipografia asiatica.

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

Guarda anche