com.esri.arcgis.geoprocessing
Interface IGPEnvelope

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
GPEnvelope, IGPEnvelopeProxy

public interface IGPEnvelope
extends java.io.Serializable

COM Interface 'IGPEnvelope'. Generated 3/19/2015 1:20:58 PM from 'C:\ArcGIS\COM\esriGeoprocessing.olb'

Description: 'Provides access to the properties/methods of a geoprocessing envelope object.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID3a1f9b59_74e8_41c2_bae6_58cfb635f061
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 IEnvelope getExtent()
          The extent of the geoprocessing envelope.
 double getXMax()
          The maximum X value of the geoprocessing envelope.
 double getXMin()
          The minimum X value of the geoprocessing envelope.
 double getYMax()
          The maximum Y value of the geoprocessing envelope.
 double getYMin()
          The minimum Y value of the geoprocessing envelope.
 void setCoords(double xMin, double yMin, double xMax, double yMax)
          Sets the extent of the geoprocessing envelope given the x/y minimum/maximum values.
 void setExtentByRef(IEnvelope ppExtent)
          The extent of the geoprocessing envelope.
 void setXMax(double xMax)
          The maximum X value of the geoprocessing envelope.
 void setXMin(double xMin)
          The minimum X value of the geoprocessing envelope.
 void setYMax(double yMax)
          The maximum Y value of the geoprocessing envelope.
 void setYMin(double yMin)
          The minimum Y value of the geoprocessing envelope.
 

Field Detail

IID3a1f9b59_74e8_41c2_bae6_58cfb635f061

static final int IID3a1f9b59_74e8_41c2_bae6_58cfb635f061
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

getXMin

double getXMin()
               throws java.io.IOException,
                      AutomationException
The minimum X value of the geoprocessing envelope.

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

setXMin

void setXMin(double xMin)
             throws java.io.IOException,
                    AutomationException
The minimum X value of the geoprocessing envelope.

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

getYMin

double getYMin()
               throws java.io.IOException,
                      AutomationException
The minimum Y value of the geoprocessing envelope.

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

setYMin

void setYMin(double yMin)
             throws java.io.IOException,
                    AutomationException
The minimum Y value of the geoprocessing envelope.

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

getXMax

double getXMax()
               throws java.io.IOException,
                      AutomationException
The maximum X value of the geoprocessing envelope.

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

setXMax

void setXMax(double xMax)
             throws java.io.IOException,
                    AutomationException
The maximum X value of the geoprocessing envelope.

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

getYMax

double getYMax()
               throws java.io.IOException,
                      AutomationException
The maximum Y value of the geoprocessing envelope.

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

setYMax

void setYMax(double yMax)
             throws java.io.IOException,
                    AutomationException
The maximum Y value of the geoprocessing envelope.

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

getExtent

IEnvelope getExtent()
                    throws java.io.IOException,
                           AutomationException
The extent of the geoprocessing envelope.

Returns:
A reference to a com.esri.arcgis.geometry.IEnvelope
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setExtentByRef

void setExtentByRef(IEnvelope ppExtent)
                    throws java.io.IOException,
                           AutomationException
The extent of the geoprocessing envelope.

Parameters:
ppExtent - A reference to a com.esri.arcgis.geometry.IEnvelope (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setCoords

void setCoords(double xMin,
               double yMin,
               double xMax,
               double yMax)
               throws java.io.IOException,
                      AutomationException
Sets the extent of the geoprocessing envelope given the x/y minimum/maximum values.

Parameters:
xMin - The xMin (in)
yMin - The yMin (in)
xMax - The xMax (in)
yMax - The yMax (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.