Discuss this help topic in SecureBlackbox Forum

TElXMLCounterSignatureList.Insert

TElXMLCounterSignatureList     See also     


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


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

Declaration

[C#]
    void Insert(int Index, TElXMLCounterSignature ACounterSignature);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ACounterSignature As TElXMLCounterSignature)

[Pascal]
    function Insert(Index : integer; ACounterSignature : TElXMLCounterSignature) : integer;

[C++]
    void Insert(int32_t Index, TElXMLCounterSignature &ACounterSignature);
    void Insert(int32_t Index, TElXMLCounterSignature *ACounterSignature);

[PHP]
    void Insert(integer $Index, TElXMLCounterSignature $ACounterSignature)

[Java]
    void insert(int Index, TElXMLCounterSignature ACounterSignature);

Parameters

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

See also:     CounterSignature     Add    

Discuss this help topic in SecureBlackbox Forum