Discuss this help topic in SecureBlackbox Forum

TElXMLCustomTimestampList.Insert

TElXMLCustomTimestampList     See also     


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


Inserts a new element into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLCustomTimestamp ATimestamp);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ATimestamp As TElXMLCustomTimestamp)

[Pascal]
    function Insert(Index : integer; AItem : TElXMLCustomTimestamp) : integer;

[C++]
    void Insert(int32_t Index, TElXMLCustomTimestamp &ATimestamp);
    void Insert(int32_t Index, TElXMLCustomTimestamp *ATimestamp);

[PHP]
    void Insert(integer $Index, TElXMLCustomTimestamp $ATimestamp)

[Java]
    void insert(int Index, TElXMLCustomTimestamp ATimestamp);

Parameters

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

Return value

    Number of the added item in the list.

Description

    Call this method to insert a TimeStamp element into the list at the specified position.

See also:     Timestamp     Add    

Discuss this help topic in SecureBlackbox Forum