com.esri.arcgis.carto
Interface IRasterItemDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
RasterItemDescriptions

public interface IRasterItemDescriptions
extends Serializable

Provides access to the properties of a list of raster item descriptions for adding a raster.

Product Availability

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


Method Summary
 void add(IRasterItemDescription pItemDescription)
          Adds a raster item description.
 int getCount()
          The raster item description count.
 IRasterItemDescription getElement(int index)
          The raster item description at the specified position.
 void insert(int index, IRasterItemDescription pItemDescription)
          Adds a raster item description at the specified position.
 void remove(int index)
          Removes the raster item description at the specified position.
 void removeAll()
          Removes all raster item descriptions.
 

Method Detail

getCount

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

IRasterItemDescription getElement(int index)
                                  throws IOException,
                                         AutomationException
The raster item 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.IRasterItemDescription
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 item 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 raster item 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(IRasterItemDescription pItemDescription)
         throws IOException,
                AutomationException
Adds a raster item description.

Product Availability

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

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

insert

void insert(int index,
            IRasterItemDescription pItemDescription)
            throws IOException,
                   AutomationException
Adds a raster item description at the specified position.

Product Availability

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

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