Share via


WebOptions.IncludeNavigation Property

PowerPoint Developer Reference

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

Syntax

expression.IncludeNavigation

expression   A variable that represents a WebOptions object.

Return Value
MsoTriState

Remarks

The value of the IncludeNavigation property can be one of these MsoTriState constants.

Constant Description
msoFalse The navigation bar for Web presentations is not visible, which enlarges the slide.
msoTrue The default. The navigation bar for Web presentations is visible at the bottom of the page.

Example

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

Visual Basic for Applications
  With Presentations(2)
    .WebOptions.IncludeNavigation = msoFalse
    .WebPagePreview
End With

See Also