Document.GridDistanceVertical property (Word)
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.
With ActiveDocument
.GridDistanceHorizontal = 9
.GridDistanceVertical = 9
.SnapToGrid = True
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.