Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Sets or returns a Section.BreakType object that represents the type of break (before) this section. There are 5 types of breaks: Continuous, Column, Page, EvenPage, and OddPage.

Signature
C#
C#
public BreakType Break{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Break() As BreakType
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

File

menu

>

Page

Setup...

>

Layout

tab

>

Section

section

>

Section

start:

{remarks} {example}{code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#
          
//--- Return Break
          Section.BreakType oBreak = oSection.Break;

          //--- Set BreakType
          oSection.Break = Section.BreakType.Column;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}
          
'--- Return Break
          Dim oBreakType As Section.BreakType = oSection.Break

          '--- Set BreakType
          oSection.Break = Section.BreakType.Column
        
{code} {example}