com.esri.arcgis.geodatabase
Interface IRasterCatalogHelper2

All Superinterfaces:
IRasterCatalogHelper, Serializable
All Known Implementing Classes:
IRasterCatalogHelper2Proxy

public interface IRasterCatalogHelper2
extends IRasterCatalogHelper, Serializable

Provides access to additional RasterCatalog utilities.

Remarks

IRasterCatalogHelper2 provides the function to update footprints of selected raster datasets in a raster catalog with a where clause.

Here is a sample for updating empty footprints in a raster catalog.

Sub UpdataFootprintEx(pRasterCatalog As IRasterCatalog)
'updates only empty footprint in the input raster catalog

Dim pHelper As IRasterCatalogHelper2
Set pHelper = New RasterCatalogHelper

pHelper.UpdateFootprintEx pRasterCatalog, "", True, Nothing

End Sub

Product Availability

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

See Also:
IRasterCatalog

Method Summary
 void updateFootprintEx(IRasterCatalog catalog, String where, boolean onlyIfEmpty, ITrackCancel cancel)
          Updates RasterCatalog footprint.
 
Methods inherited from interface com.esri.arcgis.geodatabase.IRasterCatalogHelper
updateFootprint, updateFootprintSpatialReference
 

Method Detail

updateFootprintEx

void updateFootprintEx(IRasterCatalog catalog,
                       String where,
                       boolean onlyIfEmpty,
                       ITrackCancel cancel)
                       throws IOException,
                              AutomationException
Updates RasterCatalog footprint.

Product Availability

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

Parameters:
catalog - A reference to a com.esri.arcgis.geodatabase.IRasterCatalog (in)
where - The where (in)
onlyIfEmpty - The onlyIfEmpty (in)
cancel - A reference to a com.esri.arcgis.system.ITrackCancel (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.