Discuss this help topic in SecureBlackbox Forum

TElDirInfo.InsertProperty

TElDirInfo     See also     


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


Inserts a new property at a given position in the list.

Declaration

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

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

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

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

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

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

Parameters

  • Index - specifies the position in the list at which the new item should be inserted.
  • Prop - the property to be inserted to the list.

Description

    Use this method to insert a new property at a given position in the list.

See also:     AddProperty     Properties    

Discuss this help topic in SecureBlackbox Forum