visit_special_char method

visit_special_char(special_char)

Called when a SpecialChar node is encountered in the document.

def visit_special_char(self, special_char: aspose.words.SpecialChar):
    ...
ParameterTypeDescription
special_charSpecialCharThe object that is being visited.

Remarks

This method is not be called for generic control characters (see ControlChar) that can be present in the document.

Returns

A VisitorAction value that specifies how to continue the enumeration.

See Also