Xml.xmldom.IDOMDocument.createElementNS

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

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

C++

virtual HRESULT __safecall createElementNS(const System::UnicodeString namespaceURI, const System::UnicodeString qualifiedName, _di_IDOMElement &__createElementNS_result) = 0 ;

Properties

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

Description

Creates an element node with a namespace.

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

See Also