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 footer of the specified type for this section. The footer is returned as a editable element. There are 4 types of footers:

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

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

Returns

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

Example
Code Block
csharp
csharp
titleC#

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

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