GridDistanceHorizontal Property Example

This example sets the horizontal and vertical distance between gridlines and then enables the Snap to grid feature for the current document.

With ActiveDocument
    .GridDistanceHorizontal = 9
    .GridDistanceVertical = 9
    .SnapToGrid = True
End With

This example sets the horizontal and vertical distance between gridlines and then enables the Snap to grid feature for a new document.

With Options
    .GridDistanceHorizontal = InchesToPoints(0.2)
    .GridDistanceVertical = InchesToPoints(0.2)
    .SnapToGrid = True
End With
Documents.Add