Message-ID: <848801709.2523.1710842651582.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_2522_69814653.1710842651582" ------=_Part_2522_69814653.1710842651582 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Document.GutterPosition

Document.GutterPosition

Description

=20

Sets or returns a Document.Gutt= er object representing the gutter position in this document when it is = opened in Word. If you have set up your document with facing pages or two p= ages per sheet (by using Mirror margins, Book fold, or 2 pages per sheet), = then this option is not available. Possible values: Side, Top.

=20
C#
=20
 public Gutter GutterPosition{ get; set; }
=20
=20
vb.net
=20
Public Property GutterPosition() As Gutter
=20
=20

Remarks

=20

The default value for a new Document is Document.Gutter.Side.

=20

MS Word equivalent: File menu > Page Setup... > Margins tab > M= argins section > Gutter position:

=20

Examples

=20
C#
=20

          //--- Return GutterPosition
          Document.Gutter oGutterPosition =3D oDocument.GutterPosition;

          //--- Set GutterPosition
          oDocument.GutterPosition =3D Document.Gutter.Top;
        
=20
=20
vb.net
=20

          '--- Return GutterPosition
          Dim oGutterPosition As Document.Gutter =3D oDocument.GutterPositi=
on

          '--- Set GutterPosition
          oDocument.GutterPosition =3D Gutter.Top
        
=20
------=_Part_2522_69814653.1710842651582--