Xml.xmldom.IDOMDocument.createAttributeNS

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

function createAttributeNS(const namespaceURI,                                   { DOM Level 2 }  qualifiedName: DOMString): IDOMAttr; safecall;

C++

virtual HRESULT __safecall createAttributeNS(const System::UnicodeString namespaceURI, const System::UnicodeString qualifiedName, _di_IDOMAttr &__createAttributeNS_result) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMDocument

Description

Creates an attribute node with a namespace.

The createAttributeNS method creates an attribute node with a namespace. The namespaceURI parameter specifies the namespace name for the attribute node. The qualifiedName parameter specifies the name for the attribute node.

See Also