Discuss this help topic in SecureBlackbox Forum

TElXMLDataObjectFormatList.Insert

TElXMLDataObjectFormatList     See also     


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


Inserts the DataObjectFormat element into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLDataObjectFormat ADataObjectFormat);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ADataObjectFormat As TElXMLDataObjectFormat)

[Pascal]
    function Insert(Index : integer; ADataObjectFormat : TElXMLDataObjectFormat) : integer;

[C++]
    void Insert(int32_t Index, TElXMLDataObjectFormat &ADataObjectFormat);
    void Insert(int32_t Index, TElXMLDataObjectFormat *ADataObjectFormat);

[PHP]
    void Insert(integer $Index, TElXMLDataObjectFormat $ADataObjectFormat)

[Java]
    void insert(int Index, TElXMLDataObjectFormat ADataObjectFormat);

Parameters

  • Index - Position at which a new item should be inserted.
  • ADataObjectFormat - DataObjectFormat element that should to be inserted.

Return value

    Number of the added item in the list.

Description

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

See also:     DataObjectFormat     Add    

Discuss this help topic in SecureBlackbox Forum