Skip to main content

Метод Document::getSectionsEnumerator

Реализует доступ к объектам типа Section.

Пример​


Sections sections = document.getSections();
std::shared_ptr<Enumerator<Section>> enumerator = sections.getEnumerator();

while (enumerator->isValid())
{
......................
enumerator->goToNext();
}