Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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}
{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property HasTitlePage() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle