WordWrap

ParagraphFormat.WordWrap property

Si cette propriété estFAUX , le texte latin au milieu d’un mot peut être renvoyé à la ligne pour le paragraphe actuel. Sinon, le texte latin est entouré de mots entiers.

public bool WordWrap { 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