Share via


Presentation.NoLineBreakBefore Property (PowerPoint)

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.

With ActivePresentation

    .FarEastLineBreakLevel = ppFarEastLineBreakLevelCustom

    .NoLineBreakBefore =  "!)]"

End With

See Also

Concepts

Presentation Object Members

Presentation Object