Document.GridDistanceVertical Property

Word Developer Reference

Returns or sets a Single that represents the amount of vertical space between the invisible gridlines that Microsoft Word uses when you draw, move, and resize AutoShapes or East Asian characters in the specified document. Read/write.

Syntax

expression.GridDistanceVertical

expression   A variable that represents a Document object.

Example

This example sets the horizontal and vertical distance between gridlines and then enables the Snap objects to grid feature for the current document.

Visual Basic for Applications
  With ActiveDocument
    .GridDistanceHorizontal = 9
    .GridDistanceVertical = 9
    .SnapToGrid = True
End With

See Also