com.esri.arcgis.carto
Interface IStandaloneTableInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
StandaloneTableInfos

public interface IStandaloneTableInfos
extends Serializable

Provides access to the Table Descriptions Interface.

Product Availability

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


Method Summary
 void add(IStandaloneTableInfo standaloneTableInfo)
          Adds a Table info.
 int getCount()
          The Table info count.
 IStandaloneTableInfo getElement(int index)
          The Table info at the specified position.
 void insert(int index, IStandaloneTableInfo standaloneTableInfo)
          Adds a Table info at the specified position.
 void remove(int index)
          Removes the Table info at the specified position.
 void removeAll()
          Removes all Table infos.
 

Method Detail

getCount

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

IStandaloneTableInfo getElement(int index)
                                throws IOException,
                                       AutomationException
The Table info 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.IStandaloneTableInfo
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 Table info 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 Table infos.

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(IStandaloneTableInfo standaloneTableInfo)
         throws IOException,
                AutomationException
Adds a Table info.

Product Availability

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

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

insert

void insert(int index,
            IStandaloneTableInfo standaloneTableInfo)
            throws IOException,
                   AutomationException
Adds a Table info at the specified position.

Product Availability

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

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