Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Returns an Element object that represents the header of the specified type for this section. The header is returned as a editable element. There are 4 types of headers:

Signature
C#
C#
 public Element GetHeader(HeaderFooterType type)
Signature
vb.net
vb.net
Public Function GetHeader(ByVal type As HeaderFooterType) As Element
Parameters
Param
type
type

A Section.HeaderFooterType object that represents the type of header to return.

Returns

An Element object that represents the header of the specified type for this section.

Example
Code Block
csharp
csharp
titleC#

          Element oElement = oSection.GetHeader(Section.HeaderFooterType.All);
        
Code Block
vb.net
vb.net
titlevb.net

          Dim oElement As Element = oSection.GetHeader(Section.HeaderFooterType.All)