RemoveBaseline Method

Microsoft PowerPoint Visual Basic

RemoveBaseline Method

       

Removes the base line from the presentation.

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