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

Section.PageHeight

Description

Sets or returns an=20 int that represents the page height for this section in twips.= One twip =3D (1/20 pt) or (1/1440 in)=20
C#
=20
public int PageHeight{ get; set; }
=20
=20
vb.net
=20
Public Property PageHeight() As Integer
=20
=20

Remarks

=20

Page height may not be smaller than .1" (144 twips) or larger than = 22" (31680 twips). Values beyond these will be automatically adjusted.=

MS Word equivalent: File menu > Page Setup... > Paper tab > Pap= er size: section > Height: -- (Make sure Apply to: This section is selec= ted)

=20

Examples

=20
C#
=20
          //--- Return PageHeight
          int pageHeight =3D oSection.PageHeight;

          //--- Set PageHeight to 11 inches
          oSection.PageHeight =3D 15840;
        
=20
vb.net
=20
          '--- Return PageHeight
          Dim pageHeight As Integer =3D oSection.PageHeight

          '--- Set PageHeight to 11 inches
          oSection.PageHeight =3D 15840
        
=20
------=_Part_10468_583010868.1711725557247--