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
Syntaxpublic bool FarEastLineBreakControl { get; set; }
Public Property FarEastLineBreakControl As Boolean
Get
Set
public:
property bool FarEastLineBreakControl {
bool get ();
void set (bool value);
}
member FarEastLineBreakControl : bool with get, set
Property Value
Type:
Boolean
ExamplesShows 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