DocumentBase.FarEastLineBreakLanguage Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the East Asian language to use when breaking lines of text in the document.
public Microsoft.Office.Interop.Word.WdFarEastLineBreakLanguageID FarEastLineBreakLanguage { get; set; }
Property Value
One of the WdFarEastLineBreakLanguageID values.
Examples
The following code example sets Microsoft Office Word to break lines in the current document based on Korean language rules. To use this example, run it from the ThisDocument class in a document-level project.
private void DocumentFarEastLineBreakLanguage()
{
this.FarEastLineBreakLanguage = Word.WdFarEastLineBreakLanguageID.wdLineBreakKorean;
}
Private Sub DocumentFarEastLineBreakLanguage()
Me.FarEastLineBreakLanguage = Word.WdFarEastLineBreakLanguageID.wdLineBreakKorean
End Sub