Options.SnapToGrid Property

Word Developer Reference

True if AutoShapes or East Asian characters are automatically aligned with an invisible grid when they are drawn, moved, or resized. Read/write Boolean.

Syntax

expression.SnapToGrid

expression   A variable that represents an Options collection.

Remarks

You can temporarily override this setting by pressing ALT while drawing, moving, or resizing an AutoShape.

Example

This example sets Word so that AutoShapes are automatically aligned with the invisible grid in a new document.

Visual Basic for Applications
  Options.SnapToGrid = True
Documents.Add

This example returns the status of the Snap to grid option in the Snap to Grid dialog box.

Visual Basic for Applications
  Temp = Options.SnapToGrid

See Also