Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns a [Section.BreakType|Section.BreakType] object that represents the type of break \(before\) this section. There are 5 types of breaks: Continuous, Column, Page, EvenPage, and OddPage.{excerpt}
{signature:C#}
 public BreakType Break{ get; set; }
{signature}{signature:vb.net}
Public Property Break() As BreakType
{signature}
{remarks}MS Word equivalent: File menu > Page Setup... > Layout tab > Section section > Section start:

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

          //--- Return Break
          Section.BreakType oBreak = oSection.Break;

          //--- Set BreakType
          oSection.Break = Section.BreakType.Column;
        {code}
{code:vb.net|title=vb.net}

          '--- Return Break
          Dim oBreakType As Section.BreakType = oSection.Break

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

{example}