com.esri.arcgis.carto
Interface ITableEdits

All Superinterfaces:
Serializable
All Known Implementing Classes:
TableEdits

public interface ITableEdits
extends Serializable

Product Availability

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


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

Method Detail

getCount

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

ITableEdit getElement(int index)
                      throws IOException,
                             AutomationException
TableEdit 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.ITableEdit
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 TableEdit 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 TableEdit 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(ITableEdit tableEdit)
         throws IOException,
                AutomationException
Adds a TableEdit element.

Product Availability

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

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

insert

void insert(int index,
            ITableEdit tableEdit)
            throws IOException,
                   AutomationException
Adds a TableEdit at the specified position.

Product Availability

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

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