DocumentBase.FarEastLineBreakLevel Property
Gets or sets the line break control level for the specified document.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntax
'Declaration
Public Property FarEastLineBreakLevel As WdFarEastLineBreakLevel
public WdFarEastLineBreakLevel FarEastLineBreakLevel { get; set; }
Property Value
Type: Microsoft.Office.Interop.Word.WdFarEastLineBreakLevel
One of the WdFarEastLineBreakLevel values.
Remarks
This property is ignored if the FarEastLineBreakControl property is set to false.
Examples
The following code example displays the current FarEastLineBreakLevel for characters in the document. To use this example, run it from the ThisDocument class in a document-level project.
Private Sub DocumentFarEastLineBreakLevel()
MessageBox.Show(Me.FarEastLineBreakLevel.ToString())
End Sub
private void DocumentFarEastLineBreakLevel()
{
MessageBox.Show(this.FarEastLineBreakLevel.ToString());
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.