Discuss this help topic in SecureBlackbox Forum

TElDirInfoPropertiesList.Insert

TElDirInfoPropertiesList     See also     


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


Adds a new property at the specified position in the list.

Declaration

[C#]
    void Insert(int Index, TElDirInfoProperty Prop);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal Prop As TElDirInfoProperty)

[Pascal]
    procedure Insert(Index : integer; Prop : TElDirInfoProperty);

[C++]
    void Insert(int32_t Index, TElDirInfoProperty &Prop);
    void Insert(int32_t Index, TElDirInfoProperty *Prop);

[PHP]
    void Insert(integer $Index, TElDirInfoProperty $Prop)

[Java]
    void insert(int Index, TElDirInfoProperty Prop);

Parameters

  • Index - specifies the position at which the new item should be inserted. The indexing starts with 0.
  • Prop - the property to be inserted to the list.

Description

    Use this method to insert new items to the list..

See also:     Add     SubProperties    

Discuss this help topic in SecureBlackbox Forum