Discuss this help topic in SecureBlackbox Forum

TElXMLProperties.Insert

TElXMLProperties     See also     


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


Inserts a property to the property list in the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLProperty AProperty);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal AProperty As TElXMLProperty)

[Pascal]
    procedure Insert(Index : integer; AProperty : TElXMLProperty) : integer;

[C++]
    void Insert(int32_t Index, TElXMLProperty &AProperty);
    void Insert(int32_t Index, TElXMLProperty *AProperty);

[PHP]
    void Insert(integer $Index, TElXMLProperty $AProperty)

[Java]
    void insert(int Index, TElXMLProperty AProperty);

Parameters

  • Index - The position to insert the item to
  • AProperty - The instance of TElXMLProperty class

Return value

    Index of the added item.

Description

    Use this method to add a property to the property list at specified position. If the position is not valid, an exception is raised.

See also:     Add     Delete    

Discuss this help topic in SecureBlackbox Forum