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.

 public boolean HasTitlePage{ get; set; }
Public Property HasTitlePage() As Boolean


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


          //--- Set HasTitlePage
          oSection.HasTitlePage = true;
        

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

          '--- Set HasTitlePage
          oSection.HasTitlePage = True