Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.CreateAttribute

TElXMLDOMDocument     See also     


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


Creates the attribute with given name.

Declaration

[C#]
    TElXMLDOMAttr CreateAttribute(string Name);

[VB.NET]
    Function CreateAttribute(ByVal Name As String) As TElXMLDOMAttr

[Pascal]
    function CreateAttribute(const Name : XMLString) : TElXMLDOMAttr; virtual;

[C++]
    TElXMLDOMAttrHandle CreateAttribute(const sb_u16string &Name);
    TElXMLDOMAttrHandle CreateAttribute(const std::wstring &Name);

[PHP]
    TElXMLDOMAttr CreateAttribute(string $Name)

[Java]
    TElXMLDOMAttr createAttribute(String Name);

Parameters

  • Name - A name of the attribute to create.

Return value

    Returns a reference to the newly created attribute object.

Description

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

See also:     CreateAttributeNS    

Discuss this help topic in SecureBlackbox Forum