com.esri.arcgis.carto
Interface IRasterFunctionInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
RasterFunctionInfos

public interface IRasterFunctionInfos
extends Serializable

Provides access to the properties of a list of raster function info.

Product Availability

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


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

Method Detail

getCount

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

IRasterFunctionInfo getElement(int index)
                               throws IOException,
                                      AutomationException
The raster function 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.IRasterFunctionInfo
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 function 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 function 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(IRasterFunctionInfo pFunctionInfo)
         throws IOException,
                AutomationException
Adds a raster function info.

Product Availability

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

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

insert

void insert(int index,
            IRasterFunctionInfo pFunctionInfo)
            throws IOException,
                   AutomationException
Adds a raster function info at the specified position.

Product Availability

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

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