visit_glossary_document_start method

visit_glossary_document_start(glossary)

Called when enumeration of a glossary document has started.

def visit_glossary_document_start(self, glossary: aspose.words.buildingblocks.GlossaryDocument):
    ...
ParameterTypeDescription
glossaryGlossaryDocumentThe object that is being visited.

Remarks

Note: A glossary document node and its children are not visited when you execute a Visitor over a Document. If you want to execute a Visitor over a glossary document, you need to call GlossaryDocument.accept().

Returns

A VisitorAction value that specifies how to continue the enumeration.

See Also