Document.GridOriginVertical property (Word)
Returns or sets a Single that represents the point, relative to the top of the page, where you want the invisible grid for drawing, moving, and resizing AutoShapes or East Asian characters to begin in the specified document. Read/write.
Syntax
expression. GridOriginVertical
expression A variable that represents a Document object.
Example
This example sets the horizontal and vertical point of origin for the grid, sets the horizontal and vertical distance between gridlines, and then enables the Snap objects to grid feature for the current document.
With ActiveDocument
.GridOriginHorizontal = 80
.GridOriginVertical = 90
.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.