Compartilhar via


Window.DocumentMapPercentWidth Property

Word Developer Reference

Returns or sets the width of the document map as a percentage of the width of the specified window. Read/write Long.

Syntax

expression.DocumentMapPercentWidth

expression   A variable that represents a Window object.

Example

This example displays the document map for the active window and sets the map's width to 25 percent of the window's width.

Visual Basic for Applications
  With ActiveDocument.ActiveWindow
    .DocumentMap = True
    .DocumentMapPercentWidth = 25
End With

See Also