com.esri.arcgis.geometry
Interface IParameter

All Superinterfaces:
ISpatialReferenceInfo, Serializable
All Known Subinterfaces:
IParameterEdit
All Known Implementing Classes:
Parameter

public interface IParameter
extends ISpatialReferenceInfo, Serializable

Provides access to members that control the properties of projection parameters.

Product Availability

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


Method Summary
 int getIndex()
          The index of a projection parameter within a projected coordinate system's parameter array.
 double getValue()
          The numerical value of a projection parameter.
 void setValue(double value)
          The numerical value of a projection parameter.
 
Methods inherited from interface com.esri.arcgis.geometry.ISpatialReferenceInfo
getAbbreviation, getAlias, getFactoryCode, getName, getRemarks
 

Method Detail

setValue

void setValue(double value)
              throws IOException,
                     AutomationException
The numerical value of a projection parameter.

Description

Sets the value of a particular parameter.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
value - The value (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getValue

double getValue()
                throws IOException,
                       AutomationException
The numerical value of a projection parameter.

Description

Retrieves the value of a particular parameter.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The value
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getIndex

int getIndex()
             throws IOException,
                    AutomationException
The index of a projection parameter within a projected coordinate system's parameter array.

Description

Returns the index value of a particular parameter.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The i
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.