com.esri.arcgis.carto
Interface ISubtypeInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
SubtypeInfos

public interface ISubtypeInfos
extends Serializable

Subtype Information Array.

Product Availability

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


Method Summary
 void add(ISubtypeInfo pSubtypeInfo)
          Adds a Subtype Info.
 int getCount()
          The Subtype info count.
 ISubtypeInfo getElement(int index)
          The Subtype Info at the specified position.
 void insert(int index, ISubtypeInfo pSubtypeInfo)
          Adds a Subtype info info at the specified position.
 void remove(int index)
          Removes the Subtype Info at the specified position.
 void removeAll()
          Removes all Subtype infos.
 

Method Detail

getCount

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

ISubtypeInfo getElement(int index)
                        throws IOException,
                               AutomationException
The Subtype 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.ISubtypeInfo
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 Subtype 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 Subtype 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(ISubtypeInfo pSubtypeInfo)
         throws IOException,
                AutomationException
Adds a Subtype Info.

Product Availability

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

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

insert

void insert(int index,
            ISubtypeInfo pSubtypeInfo)
            throws IOException,
                   AutomationException
Adds a Subtype info info at the specified position.

Product Availability

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

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