Expand Minimize
This topic has not yet been rated - Rate this topic

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.

expression .GridDistanceVertical

expression A variable that represents a Document object.

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
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.