ITerraExplorerObjects80
A list of ITerraExplorerObject80. This interface is returned by IWindow. PixelToObjects, and allows accessing each of the objects using the object's index.
| 
 | Properties | 
 | 
| 
 | Gets the number of objects in the list. | |
| 
 | Gets the ITerraExplorerObject element in the specified zero-based index. | 
Count
Gets the number of objects in the list.
| JavaScript | 
 | 
| Count | |
| C# | 
 | 
| int Count { get; } | |
| C++ | 
 | 
| HRESULT Count([out, retval] long* pVal); | |
Item
Gets the ITerraExplorerObject element in the specified zero-based index.
To access a specific element use the following syntax: ITerraExplorerObjects80(index).
C# exposes this property as an indexer accessed using the following syntax: ITerraExplorerObjects80[index].
| JavaScript | 
 | 
| Item(Index) | |
| C# | 
 | 
| dynamic this[object Index] { get; } | |
| C++ | 
 | 
| HRESULT Item( [in] VARIANT Index, [out, retval] VARIANT* pVal) | |
