Returns the base name for the name qualified with the namespace.
Visual Basic Syntax
strValue = oXMLDOMNode.baseName
C/C++ Syntax
HRESULT get_baseName( BSTR *nameString);
Parameters
- nameString
- [out] Right side of a namespace qualified name. For example, it returns yyy for the element <xxx:yyy>. It always returns a non-empty string.
C/C++ Return Values
- S_OK
- Value returned if successful.
- S_FALSE
- Value when returning null.
- E_INVALIDARG
- Value returned if nameString is null.
Remarks
This member is an extension of the W3C DOM.