RemoveBaseline Method

Microsoft PowerPoint Visual Basic

expression.RemoveBaseline

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

This method generates an error if the presentation is an author presentation or if there is no base line.

Example

The following line of code removes the base line from the active presentation.

Sub RmvBaseline()
    ActivePresentation.RemoveBaseline
End Sub