DocumentBase.FarEastLineBreakLevel Property

Definition

Gets or sets the line break control level for the specified document.

public:
 property Microsoft::Office::Interop::Word::WdFarEastLineBreakLevel FarEastLineBreakLevel { Microsoft::Office::Interop::Word::WdFarEastLineBreakLevel get(); void set(Microsoft::Office::Interop::Word::WdFarEastLineBreakLevel value); };
public Microsoft.Office.Interop.Word.WdFarEastLineBreakLevel FarEastLineBreakLevel { get; set; }
member this.FarEastLineBreakLevel : Microsoft.Office.Interop.Word.WdFarEastLineBreakLevel with get, set
Public Property FarEastLineBreakLevel As WdFarEastLineBreakLevel

Property Value

One of the WdFarEastLineBreakLevel values.

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 void DocumentFarEastLineBreakLevel()
{
    MessageBox.Show(this.FarEastLineBreakLevel.ToString());
}

Private Sub DocumentFarEastLineBreakLevel()
    MessageBox.Show(Me.FarEastLineBreakLevel.ToString())
End Sub

Remarks

This property is ignored if the FarEastLineBreakControl property is set to false.

Applies to