Share via


SnapToGuides Property.SnapToGuides Property

Publisher Developer Reference

True for Microsoft Office Publisher to use the guides to align objects on a page in a publication. Read/write Boolean.

Syntax

expression.SnapToGuides

expression   A variable that represents a SnapToGuides Property object.

Return Value
Boolean

Example

This example adds horizontal and vertical ruler guides every half inch on the first page and then sets the options to align objects on the page to the guides.

Visual Basic for Applications
  Sub SetSnapOptions()
    Dim intCount As Integer
    Dim intPos As Integer
    With ActiveDocument.Pages(1).RulerGuides
        For intCount = 1 To 16
            intPos = intPos + 36
            .Add Position:=intPos, Type:=pbRulerGuideTypeVertical
        Next
        intPos = 0
        For intCount = 1 To 21
            intPos = intPos + 36
             .Add Position:=intPos, Type:=pbRulerGuideTypeHorizontal
        Next
    End With
    With Application
        .SnapToGuides = True
        .SnapToObjects = True
    End With
End Sub

See Also