com.esri.arcgis.spatialanalyst
Interface IGPSARadius

All Superinterfaces:
Serializable
All Known Implementing Classes:
GPSARadius

public interface IGPSARadius
extends Serializable

Provides access to IGPSARadius interface.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.


Method Summary
 int getType()
          The type of radius.
 void setFixed(double distance, Object minCount)
          Defines a fixed radius.
 void setVariable(int count, Object maxDistance)
          Defines a variable radius.
 

Method Detail

getType

int getType()
            throws IOException,
                   AutomationException
The type of radius.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.

Returns:
A com.esri.arcgis.spatialanalyst.esriRasterRadiusEnum constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFixed

void setFixed(double distance,
              Object minCount)
              throws IOException,
                     AutomationException
Defines a fixed radius.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.

Parameters:
distance - The distance (in)
minCount - A Variant (in, optional, pass null if not required)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setVariable

void setVariable(int count,
                 Object maxDistance)
                 throws IOException,
                        AutomationException
Defines a variable radius.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Spatial Analyst Extension.

Parameters:
count - The count (in)
maxDistance - A Variant (in, optional, pass null if not required)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.