Share via


Presentation.NoLineBreakAfter Property

PowerPoint Developer Reference

Returns or sets the characters that cannot end a line. Read/write.

Syntax

expression.NoLineBreakAfter

expression   A variable that represents a Presentation object.

Return Value
String

Example

This example sets "$", "(", "[", "\", and "{" as characters that cannot end a line.

Visual Basic for Applications
  With ActivePresentation
    .FarEastLineBreakLevel = ppFarEastLineBreakLevelCustom
    .NoLineBreakAfter =  "$([\{"
End With

See Also