Discuss this help topic in SecureBlackbox Forum

TElWebDAVPropertyInfoList.Item

TElWebDAVPropertyInfoList     See also     


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


Provides access to individual elements of the list.

Declaration

[C#]
    TElWebDAVPropertyInfo Item[int index];

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

[Pascal]
    property Item[Index : integer] : TElWebDAVPropertyInfo;

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

[PHP]
    TElWebDAVPropertyInfo get_Item(integer $index)

[Java]
    TElWebDAVPropertyInfo 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 individual elements of the list.

See also:     Count    

Discuss this help topic in SecureBlackbox Forum