DocumentMap Property

Applies To

Window object.

Description

True if the document map is visible. Read/write Boolean.

See Also

DocumentMapPercentWidth property.

Example

This example toggles the document map for the active window.

ActiveWindow.DocumentMap = Not ActiveWindow.DocumentMap
This example displays the document map in the window for Sales.doc.

Set myDoc = Documents.Open(FileName:="C:\Documents\Sales.doc")
myDoc.ActiveWindow.DocumentMap = True