WordWrap

ParagraphFormat.WordWrap property

Wenn diese Eigenschaft istFALSCH , lateinischer Text in der Mitte eines Wortes kann für den aktuellen Absatz umbrochen werden. Andernfalls wird lateinischer Text durch ganze Wörter umbrochen.

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