MirrorMargins Property
Applies To
PageSetup object.
Description
True if the inside margins of facing pages are the same width and the outside margins are the same width. Can be True, False, or wdUndefined. Read/write Long.
Remarks
If the MirrorMargins property is set to True, the LeftMargin property controls the setting for inside margins and the RightMargin property controls the setting for outside margins.
See Also
BottomMargin property, LeftMargin property, RightMargin property, TopMargin property.
Example
This example sets the inside margins in the active document to 1 inch (72 points) and the outside margins to 0.5 inch. The InchesToPoints method is used to convert inches to points.
With ActiveDocument.PageSetup
.MirrorMargins = True
.LeftMargin = 72
.RightMargin = InchesToPoints(0.5)
End With