Page tree

Versions Compared

Key

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

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.

Signature
C#
C#
  public boolean HasTitlePage{ get; set; }
Signature
vb.net
vb.net

Public Property HasTitlePage() As Boolean
Example
Code Block
csharp
csharp
titleC#
          
//--- Return HasTitlePage
          bool hasTitlePage = oSection.HasTitlePage;


          //--- Set HasTitlePage
          oSection.HasTitlePage = true;
        
Code Block
vb.net
vb.net
titlevb.net
          
'--- Return HasTitlePage
          Dim hasTitlePage As Boolean = oSection.HasTitlePage

          '--- Set HasTitlePage
          oSection.HasTitlePage = True
        
Example