com.esri.arcgis.datasourcesraster
Interface IRasterHistograms

All Superinterfaces:
Serializable
All Known Implementing Classes:
RasterHistograms

public interface IRasterHistograms
extends Serializable

Provides access to members that controls a list of histograms.

Product Availability

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


Method Summary
 void add(IRasterHistogram pHistogram)
          Adds a raster histogram.
 int getCount()
          The raster histogram count.
 IRasterHistogram getElement(int index)
          The raster histogram at the specified position.
 void insert(int index, IRasterHistogram pHistogram)
          Adds a raster histogram at the specified position.
 void remove(int index)
          Removes the raster histogram at the specified position.
 void removeAll()
          Removes all raster histograms.
 

Method Detail

getCount

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

IRasterHistogram getElement(int index)
                            throws IOException,
                                   AutomationException
The raster histogram 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.IRasterHistogram
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 histogram 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 histograms.

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(IRasterHistogram pHistogram)
         throws IOException,
                AutomationException
Adds a raster histogram.

Product Availability

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

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

insert

void insert(int index,
            IRasterHistogram pHistogram)
            throws IOException,
                   AutomationException
Adds a raster histogram at the specified position.

Product Availability

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

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