com.esri.arcgis.carto
Interface IDataObjectTables

All Superinterfaces:
Serializable
All Known Implementing Classes:
DataObjectTables

public interface IDataObjectTables
extends Serializable

Data Tables.

Product Availability

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


Method Summary
 void add(IDataObjectTable dataObjectTable)
          Adds a DataObjectTable.
 int getCount()
          Data table count.
 IDataObjectTable getElement(int index)
          The DataObjectTable at the specified position.
 void insert(int index, IDataObjectTable dataObjectTable)
          Adds a DataObjectTable at the specified position.
 void remove(int index)
          Removes the DataObjectTable at the specified position.
 void removeAll()
          Removes all DataObjectTable elements.
 

Method Detail

getCount

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

IDataObjectTable getElement(int index)
                            throws IOException,
                                   AutomationException
The DataObjectTable 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.IDataObjectTable
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 DataObjectTable 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 DataObjectTable 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(IDataObjectTable dataObjectTable)
         throws IOException,
                AutomationException
Adds a DataObjectTable.

Product Availability

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

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

insert

void insert(int index,
            IDataObjectTable dataObjectTable)
            throws IOException,
                   AutomationException
Adds a DataObjectTable at the specified position.

Product Availability

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

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