Skip to main content

Метод Section.getFooters

Метод возвращает коллекцию HeadersFooters``нижних колонтитулов данного раздела.

Пример​


Sections sections = document.getSections();
SectionsEnumerator sectionsEnumerator = sections.GetEnumerator();
foreach (var section in sectionsEnumerator)
{
HeadersFooters footers = section.getFooters();
Console.WriteLine(footers);
}