Discuss this help topic in SecureBlackbox Forum

TElXMLNodeSet.Insert

TElXMLNodeSet     See also     


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


Inserts a node into the set.

Declaration

[C#]
    void Insert(int Index, TElXMLDOMNode ANode);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ANode As TElXMLDOMNode)

[Pascal]
    procedure Insert(ByVal Index : integer; ANode: TElXMLDOMNode);

[C++]
    void Insert(int32_t Index, TElXMLDOMNode &ANode);
    void Insert(int32_t Index, TElXMLDOMNode *ANode);

[PHP]
    void Insert(integer $Index, TElXMLDOMNode $ANode)

[Java]
    void insert(int Index, TElXMLDOMNode ANode);

Parameters

  • Index - position to which the node should be inserted
  • ANode - node to be inserted

Description

    Use this method to insert an XML node into the set.

See also:     Add     Delete     Clear     Node    

Discuss this help topic in SecureBlackbox Forum