Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.CreateElement

TElXMLDOMDocument     See also     


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


Creates the element with given name.

Declaration

[C#]
    TElXMLDOMElement CreateElement(string TagName);

[VB.NET]
    Function CreateElement(ByVal TagName As String) As TElXMLDOMElement

[Pascal]
    function CreateElement(const TagName : XMLString) : TElXMLDOMElement; virtual;

[C++]
    TElXMLDOMElementHandle CreateElement(const sb_u16string &TagName);
    TElXMLDOMElementHandle CreateElement(const std::wstring &TagName);

[PHP]
    TElXMLDOMElement CreateElement(string $TagName)

[Java]
    TElXMLDOMElement createElement(String TagName);

Parameters

  • TagName - A name of the element to create.

Return value

    Returns a reference to the newly created element.

Description

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

See also:     CreateElementNS    

Discuss this help topic in SecureBlackbox Forum