com.esri.arcgis.globecore
Interface IGlobeServerIdentifyResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
GlobeServerIdentifyResults

public interface IGlobeServerIdentifyResults
extends Serializable

Provides access to the Globe server identify result collection.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void add(IGlobeServerIdentifyResult pIdentifyResult)
          Adds a globe server identify result.
 int getCount()
          The globe server identify result count.
 IGlobeServerIdentifyResult getElement(int index)
          The globe server identify result at the specified position.
 void insert(int index, IGlobeServerIdentifyResult pIdentifyResult)
          Adds a globe lserver identify result at the specified position.
 void remove(int index)
          Removes the globe server identify result at the specified position.
 void removeAll()
          Removes all globe server identify results.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The globe server identify result count.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The count
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getElement

IGlobeServerIdentifyResult getElement(int index)
                                      throws IOException,
                                             AutomationException
The globe server identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.globecore.IGlobeServerIdentifyResult
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int index)
            throws IOException,
                   AutomationException
Removes the globe server identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws IOException,
                      AutomationException
Removes all globe server identify results.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

void add(IGlobeServerIdentifyResult pIdentifyResult)
         throws IOException,
                AutomationException
Adds a globe server identify result.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pIdentifyResult - A reference to a com.esri.arcgis.globecore.IGlobeServerIdentifyResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

void insert(int index,
            IGlobeServerIdentifyResult pIdentifyResult)
            throws IOException,
                   AutomationException
Adds a globe lserver identify result at the specified position.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
pIdentifyResult - A reference to a com.esri.arcgis.globecore.IGlobeServerIdentifyResult (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.