Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True if the inside and outside margins of facing pages are the same width. Read/write Long.
Syntax
expression. MirrorMargins
expression An expression that returns a PageSetup object.
Remarks
The MirrorMargins property can be True, False, or wdUndefined. 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.
Example
This example sets the inside margins of 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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.