Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the kinsoku characters after which Microsoft Office Word will not break a line.
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 NoLineBreakAfter As String
Get
Set
public string NoLineBreakAfter { get; set; }
Property Value
Type: System.String
The kinsoku characters after which Microsoft Office Word will not break a line.
Examples
The following code example sets "$", "(", "[", and "{" as the kinsoku characters after which Word will not break a line in the document. To use this example, run it from the ThisDocument class in a document-level project.
Private Sub DocumentNoLineBreakAfter()
Me.NoLineBreakAfter = "$([{"
End Sub
private void DocumentNoLineBreakAfter()
{
this.NoLineBreakAfter = "$([{";
}
.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.