Discuss this help topic in SecureBlackbox Forum

TElXMLObjectList.Insert

TElXMLObjectList     See also     


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


Inserts an XML Object into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLObject AObject);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal AObject As TElXMLObject)

[Pascal]
    function Insert(Index : integer; AObject : TElXMLObject) : integer;

[C++]
    void Insert(int32_t Index, TElXMLObject &AObject);
    void Insert(int32_t Index, TElXMLObject *AObject);

[PHP]
    void Insert(integer $Index, TElXMLObject $AObject)

[Java]
    void insert(int Index, TElXMLObject AObject);

Parameters

  • Index - Position at which a new item should be inserted.
  • AObject - an element that should to be added to the list.

Return value

    Number of the added item in the list.

Description

    Call this method to insert an XML object into the list at the specified position.

See also:     Objects     Add    

Discuss this help topic in SecureBlackbox Forum