com.esri.arcgis.carto
Interface IStandaloneTableDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
StandaloneTableDescriptions

public interface IStandaloneTableDescriptions
extends Serializable

Provides access to the Table Descriptions Interface.

Product Availability

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


Method Summary
 void add(IStandaloneTableDescription standaloneTableDescription)
          Adds a Table description.
 int getCount()
          The Table description count.
 IStandaloneTableDescription getElement(int index)
          The Table description at the specified position.
 void insert(int index, IStandaloneTableDescription standaloneTableDescription)
          Adds a Table description at the specified position.
 void remove(int index)
          Removes the Table description at the specified position.
 void removeAll()
          Removes all Table descriptions.
 

Method Detail

getCount

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

IStandaloneTableDescription getElement(int index)
                                       throws IOException,
                                              AutomationException
The Table description 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.IStandaloneTableDescription
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 description 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 descriptions.

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(IStandaloneTableDescription standaloneTableDescription)
         throws IOException,
                AutomationException
Adds a Table description.

Product Availability

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

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

insert

void insert(int index,
            IStandaloneTableDescription standaloneTableDescription)
            throws IOException,
                   AutomationException
Adds a Table description at the specified position.

Product Availability

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

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