Options.GridOriginHorizontal Property (Word)
Returns or sets the point, relative to the left edge of the page, where you want the invisible grid for drawing, moving, and resizing AutoShapes or East Asian characters to begin in new documents. Read/write Single.
Syntax
expression .GridOriginHorizontal
expression A variable that represents an Options collection.
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 a new document.
With Options
.GridOriginHorizontal = InchesToPoints(1)
.GridOriginVertical = InchesToPoints(2)
.GridDistanceHorizontal = InchesToPoints(0.1)
.GridDistanceVertical = InchesToPoints(0.1)
.SnapToGrid = True
End With
Documents.Add