Description
Sets or returns aboolean
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 |