NoLineBreakBefore Property

Microsoft PowerPoint Visual Basic

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

Example

This example sets "!", ")", and "]" as characters that cannot begin a line.

With ActivePresentation
    .FarEastLineBreakLevel = ppFarEastLineBreakLevelCustom
    .NoLineBreakBefore =  "!)]"
End With