com.esri.arcgis.carto
Interface IImageResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
ImageResults

public interface IImageResults
extends Serializable

Raster Value Result Array.

Product Availability

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


Method Summary
 void add(IImageResult2 pImageResult)
          Adds a Raster Value Result.
 int getCount()
          The Raster Value Result count.
 IImageResult2 getElement(int index)
          The Raster Value Result at the specified position.
 void insert(int index, IImageResult2 pImageResult)
          Adds a Raster Value Result info at the specified position.
 void remove(int index)
          Removes the Raster Value Result at the specified position.
 void removeAll()
          Removes all Raster Value Results.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The Raster Value 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

IImageResult2 getElement(int index)
                         throws IOException,
                                AutomationException
The Raster Value 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.carto.IImageResult2
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 Raster Value 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 Raster Value 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(IImageResult2 pImageResult)
         throws IOException,
                AutomationException
Adds a Raster Value Result.

Product Availability

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

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

insert

void insert(int index,
            IImageResult2 pImageResult)
            throws IOException,
                   AutomationException
Adds a Raster Value Result info at the specified position.

Product Availability

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

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