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:

 public Element GetFooter(HeaderFooterType type)
Public Function GetFooter(ByVal type As HeaderFooterType) As Element

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

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


          Element oElement = oSection.GetFooter(Section.HeaderFooterType.All);
        

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