Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.CreateAttributeNS

TElXMLDOMDocument     See also     


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


Creates the attribute with given local name and namespace URI.

Declaration

[C#]
    TElXMLDOMAttr CreateAttributeNS(string aNSURi, string aName);

[VB.NET]
    Function CreateAttributeNS(ByVal aNSURi As String, ByVal aName As String) As TElXMLDOMAttr

[Pascal]
    function CreateAttributeNS(const aNSURi, aName : XMLString) : TElXMLDOMAttr; virtual;

[C++]
    TElXMLDOMAttrHandle CreateAttributeNS(const sb_u16string &aNSURi, const sb_u16string &aName);
    TElXMLDOMAttrHandle CreateAttributeNS(const std::wstring &aNSURi, const std::wstring &aName);

[PHP]
    TElXMLDOMAttr CreateAttributeNS(string $aNSURi, string $aName)

[Java]
    TElXMLDOMAttr createAttributeNS(String aNSURi, String aName);

Parameters

  • aNSURI - A namespace URI of the attribute to create.
  • aName - A local 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 local name and namespace URI.

See also:     CreateAttribute    

Discuss this help topic in SecureBlackbox Forum