Document.FarEastLineBreakLevel Property (2007 System)
Gets or sets the line break control level for the specified document.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public Property FarEastLineBreakLevel As WdFarEastLineBreakLevel
'Usage
Dim instance As Document
Dim value As WdFarEastLineBreakLevel
value = instance.FarEastLineBreakLevel
instance.FarEastLineBreakLevel = value
[BrowsableAttribute(false)]
public WdFarEastLineBreakLevel FarEastLineBreakLevel { get; set; }
[BrowsableAttribute(false)]
public:
property WdFarEastLineBreakLevel FarEastLineBreakLevel {
WdFarEastLineBreakLevel get ();
void set (WdFarEastLineBreakLevel value);
}
public function get FarEastLineBreakLevel () : WdFarEastLineBreakLevel
public function set FarEastLineBreakLevel (value : WdFarEastLineBreakLevel)
Property Value
Type: 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.
This example is for a document-level customization.
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.