Discuss this help topic in SecureBlackbox Forum

TElXMLDOMDocument.CreateComment

TElXMLDOMDocument     


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


Creates the comment node with given contents.

Declaration

[C#]
    TElXMLDOMComment CreateComment(string Data);

[VB.NET]
    Function CreateComment(ByVal Data As String) As TElXMLDOMComment

[Pascal]
    function CreateComment(const Data : XMLString) : TElXMLDOMComment;

[C++]
    TElXMLDOMCommentHandle CreateComment(const sb_u16string &Data);
    TElXMLDOMCommentHandle CreateComment(const std::wstring &Data);

[PHP]
    TElXMLDOMComment CreateComment(string $Data)

[Java]
    TElXMLDOMComment createComment(String Data);

Parameters

  • Data - A name of the attribute to create.

Return value

    Returns a reference to the newly created comment object.

Description

    Use this method to create a comment with given data.

Discuss this help topic in SecureBlackbox Forum