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

Section.Break

Description

Sets or returns a=20 Section.BreakType object tha= t represents the type of break (before) this section. There are 5 types of = breaks: Continuous, Column, Page, EvenPage, and OddPage.=20
C#
=20
public BreakType Break{ get; set; }
=20
=20
vb.net
=20
Public Property Break() As BreakType
=20
=20

Remarks

MS Word equivalent: File menu= > Page Setup... > Layout tab > Section section > Section start= :=20

Examples

=20
C#
=20
          //--- Return Break
          Section.BreakType oBreak =3D oSection.Break;

          //--- Set BreakType
          oSection.Break =3D Section.BreakType.Column;
        
=20
vb.net
=20
          '--- Return Break
          Dim oBreakType As Section.BreakType =3D oSection.Break

          '--- Set BreakType
          oSection.Break =3D Section.BreakType.Column
        
=20
------=_Part_10202_388449330.1711716707724--