Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.CreateElementNS

TElXMLDOMDocument     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Creates the element with given name.

Declaration

[C#]
    TElXMLDOMElement CreateElementNS(string aNSURI, string aName);

[VB.NET]
    Function CreateElementNS(ByVal aNSURI As String, ByVal aName As String) As TElXMLDOMElement

[Pascal]
    function CreateElementNS(const aNSURI, aName : XMLString) : TElXMLDOMElement; virtual;

[C++]
    TElXMLDOMElementHandle CreateElementNS(const sb_u16string &aNSURI, const sb_u16string &aName);
    TElXMLDOMElementHandle CreateElementNS(const std::wstring &aNSURI, const std::wstring &aName);

[PHP]
    TElXMLDOMElement CreateElementNS(string $aNSURI, string $aName)

[Java]
    TElXMLDOMElement createElementNS(String aNSURI, String aName);

Parameters

  • aNSURI - A namespace URI for the element to create.
  • aName - A name for the element to create.

Return value

    Returns a reference to the newly created element object.

Description

    Use this method to create an element node with the given name and namespace URI.

See also:     CreateElement    

Discuss this help topic in SecureBlackbox Forum