Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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
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.