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

ParagraphFormatting.PageBreakBefore

Descript= ion

=20

Sets or returns a boolean that represents if Word will have= a paragraph be the start of a new page. (It inserts a manual page break be= fore the paragraph.)

=20
C#
=20
 public boolean PageBreakBefore{ get; set; }
=20
=20
vb.net
=20
Public Property PageBreakBefore() As Boolean
=20
=20

Remarks

MS Word= equivalent: Format menu > Paragraph... > Line and Page Breaks tab &g= t; Pagination section > Page break before=20

Examples

=20
C#
=20

          //--- Return PageBreakBefore
          bool pageBreakBefore =3D oParagraphFormatting.PageBreakBefore;

          //--- Set PageBreakBefore
          oParagraphFormatting.PageBreakBefore =3D true;
        
=20
=20
vb.net
=20

          '--- Return PageBreakBefore
          Dim pageBreakBefore As Boolean =3D oParagraphFormatting.PageBreak=
Before

          '--- Set PageBreakBefore
          oParagraphFormatting.PageBreakBefore =3D True
        
=20
------=_Part_9994_717502165.1711708671224--