GridOriginHorizontal Property 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 to grid feature for the current document.
With ActiveDocument
.GridOriginHorizontal = 80
.GridOriginVertical = 90
.GridDistanceHorizontal = 9
.GridDistanceVertical = 9
.SnapToGrid = True
End With
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 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