com.esri.arcgis.carto
Interface IRasterTypeInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
RasterTypeInfos

public interface IRasterTypeInfos
extends Serializable

Provides access to the properties of a list of raster type infos.

Product Availability

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


Method Summary
 void add(IRasterTypeInfo pTypeInfo)
          Adds a raster type info.
 int getCount()
          The raster type info count.
 IRasterTypeInfo getElement(int index)
          The raster type info at the specified position.
 void insert(int index, IRasterTypeInfo pTypeInfo)
          Adds a raster type info at the specified position.
 void remove(int index)
          Removes the raster type info at the specified position.
 void removeAll()
          Removes all raster type infos.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The raster type info count.

Product Availability

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

Returns:
The pCount
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getElement

IRasterTypeInfo getElement(int index)
                           throws IOException,
                                  AutomationException
The raster type 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.IRasterTypeInfo
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 raster type 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 raster type 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(IRasterTypeInfo pTypeInfo)
         throws IOException,
                AutomationException
Adds a raster type info.

Product Availability

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

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

insert

void insert(int index,
            IRasterTypeInfo pTypeInfo)
            throws IOException,
                   AutomationException
Adds a raster type info at the specified position.

Product Availability

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

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