Returns a section of the footer.

public HeaderFooterSection GetFooter(HeaderFooterSection.Section section)
Public Function GetFooter(ByVal section As HeaderFooterSection.Section) As HeaderFooterSection

The section of the footer to return

A HeaderFooterSection object representing the specified section of the footer

          //--- Get the left footer of the first worksheet
          HeaderFooterSection myLeftFooter = WB[0].PageSetup.GetFooter(HeaderFooterSection.Section.Left);
          '--- Get the left footer of the first worksheet
          Dim myLeftFooter As HeaderFooterSection = WB[0].PageSetup.GetFooter(HeaderFooterSection.Section.Left)
        

You can use a HeaderFooterSection object to manipulate a given section of the header or footer, such as the text or image that appears in that section. Note that the total length of the text in all sections of the footer may not exceed 255 characters.