Share via


DocumentBase.NoLineBreakAfter Property

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

See Also

Reference

DocumentBase Class

Microsoft.Office.Tools.Word Namespace