Share via


PageSetup.Gutter Property

Word Developer Reference

Returns or sets the amount (in points) of extra margin space added to each page in a document or section for binding. Read/write Single.

Syntax

expression.Gutter

expression   A variable that represents a PageSetup object.

Remarks

If the MirrorMargins property is set to True, the Gutter property adds the extra space to the inside margins. Otherwise, the extra space is added to the left margin.

Example

This example adds 1 inch (72 points) to the inside margins of the active document.

Visual Basic for Applications
  With ActiveDocument.PageSetup
    .MirrorMargins = True
    .Gutter = 72
End With

See Also