Discuss this help topic in SecureBlackbox Forum

TElXMLTimestampList.Insert

TElXMLTimestampList     See also     


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


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

Declaration

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

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

[Pascal]
    function Insert(Index : integer; ATimestamp : TElXMLTimestamp) : integer;

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

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

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

Parameters

  • Index - Position at which a new item should be inserted.
  • ATimestamp - 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 a Timestamp element into the list at the specified position.

See also:     Add    

Discuss this help topic in SecureBlackbox Forum