

| Type | Description | |||
| Index as Variant | A Long expression that specifies the index of the object being requested | |||
| ExShellObject | An ExShellObject object being requested. |
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