Discuss this help topic in SecureBlackbox Forum

TElXMLIncludeList.Insert

TElXMLIncludeList     See also     


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


Inserts an Include element into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLInclude AInclude);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal AInclude As TElXMLInclude)

[Pascal]
    function Insert(Index : integer; AInclude : TElXMLInclude) : integer;

[C++]
    void Insert(int32_t Index, TElXMLInclude &AInclude);
    void Insert(int32_t Index, TElXMLInclude *AInclude);

[PHP]
    void Insert(integer $Index, TElXMLInclude $AInclude)

[Java]
    void insert(int Index, TElXMLInclude AInclude);

Parameters

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

See also:     Includes     Add    

Discuss this help topic in SecureBlackbox Forum