Discuss this help topic in SecureBlackbox Forum

TElVFSEntryInformationList.Item

TElVFSEntryInformationList     See also     


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


Provides access to individual list items.

Declaration

[C#]
    TElVFSEntryInformation Item[int index];

[VB.NET]
    Property Item(ByVal index As Integer) As TElVFSEntryInformation

[Pascal]
    property Item[index : integer] : TElVFSEntryInformation;

[C++]
    TElVFSEntryInformation* get_Item(int32_t index);

[PHP]
    TElVFSEntryInformation get_Item(integer $index)

[Java]
    TElVFSEntryInformation getItem(int index);

Parameters

  • index - the index of the desired item in the list. The first item has Index=0, the second has Index=1, and so on.

Description

    Use this property to access list items.

See also:     Count    

Discuss this help topic in SecureBlackbox Forum