accept method

accept(visitor)

Accepts a visitor.

def accept(self, visitor: aspose.words.DocumentVisitor):
    ...
ParameterTypeDescription
visitorDocumentVisitorThe visitor that will visit the node.

Remarks

Calls DocumentVisitor.visit_editable_range_end().

For more info see the Visitor design pattern.

Returns

False if the visitor requested the enumeration to stop.

See Also