Discuss this help topic in SecureBlackbox Forum

TElCustomTSPClientList.Insert

TElCustomTSPClientList     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, TElCustomTSPClient ATSPClient);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ATSPClient As TElCustomTSPClient)

[Pascal]
    function Insert(Index : integer; ATSPClient : TElCustomTSPClient) : integer;

[C++]
    void Insert(int32_t Index, TElCustomTSPClient &ATSPClient);
    void Insert(int32_t Index, TElCustomTSPClient *ATSPClient);

[PHP]
    void Insert(integer $Index, TElCustomTSPClient $ATSPClient)

[Java]
    void insert(int Index, TElCustomTSPClient ATSPClient);

Parameters

  • Index - position at which a new item should be inserted.
  • ATSPClient - 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 TSP client into the list at the specified position.

See also:     TSPClients     Add    

Discuss this help topic in SecureBlackbox Forum