MirrorGuides Property

Microsoft Publisher Visual Basic

expression.MirrorGuides

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

Remarks

When the MirrorGuides property is True, margin settings apply to right-facing pages and are mirrored for left-facing pages. In addition, when set to True, the MirrorGuides property sets the publication to use two master pages instead of the default of one. The first master page is for all left-facing pages and the second is for all right-facing pages in the publication. For more information, see MasterPages object.

Example

The following example sets Publisher to create mirror guides for a book fold publication and sets the inside and outside margins of each two-page spread. The example sets the left and right margin values for right-facing pages, and Publisher mirrors these values for left-facing pages.

With ActiveDocument.LayoutGuides
    .MirrorGuides = True
    .MarginLeft = 48
    .MarginRight = 96
End With