FarEastLineBreakControl
ParagraphFormat.FarEastLineBreakControl property
Gets or sets a flag indicating whether East Asian line-breaking rules are applied to the current paragraph.
public bool FarEastLineBreakControl { get; set; }
Examples
Shows how to set special properties for Asian typography.
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");
See Also
- class ParagraphFormat
- namespace Aspose.Words
- assembly Aspose.Words