ParagraphFormatFarEastLineBreakControl Property

Gets or sets a flag indicating whether East Asian line-breaking rules are applied to the current paragraph.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool FarEastLineBreakControl { get; set; }

Property Value

Type: Boolean
Examples
Shows how to set special properties for Asian typography.
Document doc = new Document(MyDir + "Document.docx");

ParagraphFormat format = doc.FirstSection.Body.Paragraphs[0].ParagraphFormat;
format.FarEastLineBreakControl = true;
format.WordWrap = false;
format.HangingPunctuation = true;

doc.Save(ArtifactsDir + "Paragraph.AsianTypographyProperties.docx");
See Also