Share via


Presentation.NoLineBreakBefore Property

PowerPoint Developer Reference

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

Syntax

expression.NoLineBreakBefore

expression   A variable that represents a Presentation object.

Return Value
String

Example

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

Visual Basic for Applications
  With ActivePresentation
    .FarEastLineBreakLevel = ppFarEastLineBreakLevelCustom
    .NoLineBreakBefore =  "!)]"
End With

See Also