Skip to main content

Метод Sections::getEnumerator

Метод позволяет перечислить коллекцию секций документа.

Пример​


Sections sections = document.getSections();
std::shared_ptr<Enumerator<Section>> enumerator = sections.getEnumerator();
while (enumerator->isValid())
{
enumerator->goToNext();
}