property ExShellObjects.Item (Index as Variant) as ExShellObject
Retrieves the ExShellObject object given its index.

TypeDescription
Index as Variant A Long expression that specifies the index of the object being requested 
ExShellObject An ExShellObject object being requested.
This objects are created internally and the user cannot add or remove them. The Item property retrieves an object based on its index. Use the Get method to fill the Objects collection with specified files or folders.

The following VB sample displays all browsed objects:

ExShellView1.Objects.Get AllItems
With ExShellView1.Objects
    For i = 0 To .Count - 1
        Debug.Print .Item(i).Name
    Next
End With