FarEastLineBreakControl

ParagraphFormat.FarEastLineBreakControl property

Ruft ein Flag ab oder legt es fest, das angibt, ob ostasiatische Zeilenumbruchregeln auf den aktuellen Absatz angewendet werden.

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