Share via


DefaultWebOptions.IncludeNavigation Property

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

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property IncludeNavigation As MsoTriState
    Get
    Set
'Usage
Dim instance As DefaultWebOptions
Dim value As MsoTriState

value = instance.IncludeNavigation

instance.IncludeNavigation = value
MsoTriState IncludeNavigation { get; set; }

Property Value

Type: Microsoft.Office.Core.MsoTriState
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.

Examples

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.

With Presentations(2)

    .WebOptions.IncludeNavigation= msoFalse

    .WebPagePreview

End With

See Also

Reference

DefaultWebOptions Interface

DefaultWebOptions Members

Microsoft.Office.Interop.PowerPoint Namespace