ViewBoundariesAndGuides Property

       

Returns True if boundaries and guides are visible in the specified publication. Read/write Boolean.

expression.ViewBoundariesAndGuides

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example opens a message box and displays if the current publication shows boundaries and guides.

Sub ViewBandG()

    MsgBox "Boundaries & Guides = " & _
	Application.ActiveDocument.ViewBoundariesAndGuides

End Sub