Provides access to members that control a raster collection.
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Members
Description | ||
---|---|---|
Append | Appends a raster to the end. | |
Empty | Empties this raster collection. | |
Find | Finds a given raster and returns its index position. | |
Get | Gets the raster at a given index position. | |
Insert | Inserts a raster at a given index. | |
Populate | Populates this raster collection from associated RasterCatalog. | |
RasterCount | The number of rasters in this raster collection. | |
Remove | Removes a raster at a given index. | |
Set | Sets the raster at a given index position. |
CoClasses that implement IRasterCollection
CoClasses and Classes | Description |
---|---|
MosaicRaster | A mosaic of rasters. |
Remarks
The Remove and Empty method will remove the rasters from the MoaicRaster, it does not release the raster object from application. For .NET developers, to prevent the application from holding input rasters or the ouput raster, you must make explicitly call to release the references to the rasters or raster datasets being used:
System.Runtime.InteropServices.
Marshal.ReleaseComObject(inputRasterDS);