remove Method
Removes the specified namespace from a collection.
[Script]
Script Syntax
objXMLDOMSchemaCol.remove(namespaceURI);
Parameters
- namespaceURI
- The namespace to remove from the collection. This can be any string that can be used in an
xmlns
attribute, but it cannot contain entity references. The same white space normalization that occurs on thexmlns
attribute occurs on this argument (that is, leading and trailing white space is trimmed, new lines are converted to spaces, and multiple adjacent white space characters are collapsed into one space).
[Visual Basic]
Visual Basic Syntax
objXMLDOMSchemaCol.remove(namespaceURI)
Parameters
- namespaceURI
- The namespace to remove from the collection. This can be any string that can be used in an
xmlns
attribute, but it cannot contain entity references. The same white space normalization that occurs on thexmlns
attribute occurs on this argument (that is, leading and trailing white space is trimmed, new lines are converted to spaces, and multiple adjacent white space characters are collapsed into one space).
[C/C++]
C/C++ Syntax
HRESULT remove(BSTR namespaceURI);
Parameters
- namespaceURI [in]
- The namespace to remove from the collection.
This can be any string that can be used in an
xmlns
attribute, but it cannot contain entity references. The same white space normalization that occurs on thexmlns
attribute occurs on this argument (that is, leading and trailing white space is trimmed, new lines are converted to spaces, and multiple adjacent white space characters are collapsed into one space).
C/++Return Values
- E_INVALIDARG
- The value returned if the namespace does not exist in the collection.
- E_FAIL
- The value returned if the collection is read-only.
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button in the upper-left corner of the page.
See Also
Applies to: IXMLDOMSchemaCollection/XMLSchemaCache