com.esri.arcgis.datasourcesraster
Interface IRasterInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
RasterInfos

public interface IRasterInfos
extends Serializable

Provides access to an array of RasterInfos.

Product Availability

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


Method Summary
 void add(IRasterInfo pRasterInfo)
          Adds a RasterInfo.
 int getCount()
          The RasterInfo count.
 IRasterInfo getElement(int index)
          The RasterInfo at the specified position.
 void insert(int index, IRasterInfo pRasterInfo)
          Adds a RasterInfo at the specified position.
 void remove(int index)
          Removes the RasterInfo at the specified position.
 void removeAll()
          Removes all RasterInfos.
 

Method Detail

getCount

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

IRasterInfo getElement(int index)
                       throws IOException,
                              AutomationException
The RasterInfo 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.datasourcesraster.IRasterInfo
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 RasterInfo 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 RasterInfos.

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(IRasterInfo pRasterInfo)
         throws IOException,
                AutomationException
Adds a RasterInfo.

Product Availability

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

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

insert

void insert(int index,
            IRasterInfo pRasterInfo)
            throws IOException,
                   AutomationException
Adds a RasterInfo at the specified position.

Product Availability

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

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