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 {{boolean}} that represents whether or not this section has a title page. This can affect page numbering and the appearance of headers and footers.{excerpt}
{signature:C#}
 public boolean HasTitlePage{ get; set; }
{signature}{signature:vb.net}
Public Property HasTitlePage() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Return HasTitlePage
          bool hasTitlePage = oSection.HasTitlePage;


          //--- Set HasTitlePage
          oSection.HasTitlePage = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return HasTitlePage
          Dim hasTitlePage As Boolean = oSection.HasTitlePage

          '--- Set HasTitlePage
          oSection.HasTitlePage = True
        {code}

{example}