com.esri.arcgis.carto
Interface ITableEditResults

All Superinterfaces:
Serializable
All Known Implementing Classes:
TableEditResults

public interface ITableEditResults
extends Serializable

Product Availability

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


Method Summary
 void add(ITableEditResult tableEditResult)
          Adds a TableEditResult element.
 int getCount()
          TableEditResult elements count.
 ITableEditResult getElement(int index)
          TableEditResult element at the specified position.
 void insert(int index, ITableEditResult tableEditResult)
          Adds a TableEditResult at the specified position.
 void remove(int index)
          Removes the TableEditResult at the specified position.
 void removeAll()
          Removes all TableEditResult elements.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
TableEditResult elements 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

ITableEditResult getElement(int index)
                            throws IOException,
                                   AutomationException
TableEditResult element 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.ITableEditResult
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 TableEditResult 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 TableEditResult elements.

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(ITableEditResult tableEditResult)
         throws IOException,
                AutomationException
Adds a TableEditResult element.

Product Availability

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

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

insert

void insert(int index,
            ITableEditResult tableEditResult)
            throws IOException,
                   AutomationException
Adds a TableEditResult at the specified position.

Product Availability

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

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