Метод Section::getFooters
Метод возвращает коллекцию HeadersFooters``нижних колонтитулов данного раздела.
Пример
Sections sections = document.getSections();
std::shared_ptr<Enumerator<Section>> enumerator = sections.getEnumerator();
while (enumerator->isValid())
{
Section section = enumerator->getCurrent();
HeadersFooters footers = section.getFooters();
...................................................
enumerator->goToNext();
}