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

PageSetup.PrintArea

Description

Sets or returns the area of the worksheet that will be printed. Cont= ent outside of this area will not be printed.

(This is not supported for charts.)

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

Remarks

=20

By default all of the content will be printed, and PrintArea will return= an area covering the entire worksheet.

When rendering to a PDF document, only content within the worksheet's Pr= intArea will be rendered.

=20

Examples

=20
C#
=20
          //--- Get PrintArea
          Area prntArea =3D ps.PrintArea;

          //--- Set PrintArea
          ps.PrintArea =3D prntArea;
        
=20
vb.net
=20
          '--- Get PrintArea
          Dim prntArea As Area =3D ps.PrintArea

          '--- Set PrintArea
          ps.PrintArea =3D prntArea
        
=20
------=_Part_8804_568410199.1711662143254--