IncludeNavigation Property

Microsoft PowerPoint Visual Basic

IncludeNavigation Property

       

Determines whether the navigation bar for Web presentations is visible. Read/write MsoTriState.

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse The navigation bar for Web presentations is not visible, which enlarges the slide.
msoTriStateMixed
msoTriStateToggle
msoTrue Default. The navigation bar for Web presentations is visible at the bottom of the page.

Example

This example specifies that the navigation bar is not to be included in the specified Web presentation. It then previews the presentation in the active Web browser.

With Presentations(2)
    .WebOptions.IncludeNavigation = msoFalse
    .WebPagePreview
End With