Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

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.
C#
public boolean HasTitlePage{ get; set; }
vb.net
Public Property HasTitlePage() As Boolean

Examples

C#
//--- Return HasTitlePage
bool hasTitlePage = oSection.HasTitlePage;
 
 
//--- Set HasTitlePage
oSection.HasTitlePage = true;
vb.net
'--- Return HasTitlePage
Dim hasTitlePage As Boolean = oSection.HasTitlePage
 
'--- Set HasTitlePage
oSection.HasTitlePage = True
  • No labels