HangingPunctuation

ParagraphFormat.HangingPunctuation property

Obtient ou définit un indicateur indiquant si la ponctuation suspendue est activée pour le paragraphe actuel.

public bool HangingPunctuation { get; set; }

Exemples

Montre comment définir des propriétés spéciales pour la typographie asiatique.

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

Voir également