Aspose::Words::Document::RemoveExternalSchemaReferences method

Document::RemoveExternalSchemaReferences method

Removes external XML schema references from this document.

void Aspose::Words::Document::RemoveExternalSchemaReferences()

Examples

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

auto doc = MakeObject<Document>(MyDir + u"External XML schema.docx");

doc->RemoveExternalSchemaReferences();

See Also