Options.DisplayGridLines Property

Word Developer Reference

True if Microsoft Word displays the document grid. This property is the equivalent of the Gridlines command on the View menu. Read/write Boolean.

Syntax

expression.DisplayGridLines

expression   A variable that represents a Options object.

Remarks

This property affects only the document grid. For table gridlines, use the TableGridlines property.

Example

This example switches between displaying and hiding the document grid in the active window.

Visual Basic for Applications
  Options.DisplayGridLines = Not Options.DisplayGridLines

See Also