remove_external_schema_references method

remove_external_schema_references()

Removes external XML schema references from this document.

def remove_external_schema_references(self):
    ...

Examples

Shows how to remove all external XML schema references from a document.

doc = aw.Document(file_name=MY_DIR + 'External XML schema.docx')
doc.remove_external_schema_references()

See Also