Indicates whether the node (usually an attribute) is explicitly specified or derived from a default value in the DTD or schema.
boolValue = oXMLDOMNode.specified
HRESULT get_specified( VARIANT_BOOL *isSpecified);
This value depends on the value of the nodeType method.
NODE_ATTRIBUTE | Returns True if the attribute is specified directly on the element. Returns False for default attributes. |
NODE_CDATA_SECTION, NODE_COMMENT, NODE_DOCUMENT, NODE_DOCUMENT_FRAGMENT, NODE_DOCUMENT_TYPE, NODE_ELEMENT, NODE_ENTITY, NODE_ENTITY_REFERENCE, NODE_NOTATION, NODE_PROCESSING_INSTRUCTION, NODE_TEXT | Returns True. |