com.esri.arcgis.carto
Interface IRelateInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
RelateInfos

public interface IRelateInfos
extends Serializable

Provides access to the RelateInfos Interface.

Product Availability

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


Method Summary
 void add(IRelateInfo relateInfo)
          Adds a Relate info.
 int getCount()
          The Table info count.
 IRelateInfo getElement(int index)
          The Relate info at the specified position.
 void insert(int index, IRelateInfo relateInfo)
          Adds a Relate info at the specified position.
 void remove(int index)
          Removes the Relate info at the specified position.
 void removeAll()
          Removes all Relate 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

IRelateInfo getElement(int index)
                       throws IOException,
                              AutomationException
The Relate 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.IRelateInfo
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 Relate 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 Relate 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(IRelateInfo relateInfo)
         throws IOException,
                AutomationException
Adds a Relate info.

Product Availability

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

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

insert

void insert(int index,
            IRelateInfo relateInfo)
            throws IOException,
                   AutomationException
Adds a Relate info at the specified position.

Product Availability

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

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