com.esri.arcgis.carto
Interface IImageServerEditResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
ImageServerEditResults

public interface IImageServerEditResults
extends Serializable

Provides access to the Image Server Edit Results Interface.

Product Availability

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


Method Summary
 void add(IImageServerEditResult pEditResult)
          Adds a edit result.
 int getCount()
          The edit result count.
 IImageServerEditResult getElement(int index)
          The edit result at the specified position.
 void insert(int index, IImageServerEditResult pEditesult)
          Adds a edit result at the specified position.
 void remove(int index)
          Removes the edit result at the specified position.
 void removeAll()
          Removes all edit results.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The edit result count.

Product Availability

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

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

getElement

IImageServerEditResult getElement(int index)
                                  throws IOException,
                                         AutomationException
The edit 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.IImageServerEditResult
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 edit 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 edit 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(IImageServerEditResult pEditResult)
         throws IOException,
                AutomationException
Adds a edit result.

Product Availability

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

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

insert

void insert(int index,
            IImageServerEditResult pEditesult)
            throws IOException,
                   AutomationException
Adds a edit result at the specified position.

Product Availability

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

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