baseName Property (Windows CE 5.0)
Returns the base name for the name qualified with the namespace.
[Script]
Script Syntax
strValue=oXMLDOMNode.baseName;
Script Parameters
None.
Script Return Value
String. It returns the right-hand 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++]
C/C++ Syntax
HRESULT get_baseName(BSTR* nameString);
C/C++ Parameters
- nameString
[out, retval] Right-hand 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 returned when there is no base name. - E_INVALIDARG
Value returned if nameString is Null.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
General Remarks
This member is an extension of the World Wide Web Consortium (W3C) Document Object Model (DOM).
This property is read-only, and applies to the following objects and interfaces:
IXMLDOMAttribute, IXMLDOMCDATASection, IXMLDOMCharacterData, IXMLDOMComment, DOMDocument, IXMLDOMDocumentFragment, IXMLDOMDocumentType, IXMLDOMElement, IXMLDOMEntity, IXMLDOMEntityReference, IXMLDOMNode, IXMLDOMNotation, IXMLDOMProcessingInstruction, IXMLDOMText, and IXTLRuntime.
Send Feedback on this topic to the authors