com.esri.arcgis.geometry
Interface IEnvelope2

All Superinterfaces:
IEnvelope, IGeometry, Serializable
All Known Implementing Classes:
Envelope

public interface IEnvelope2
extends IEnvelope, Serializable

Provides access to members that extend the IEnvelope interface.

Description

IEnvelope2 allows the minimum and maximum M and Z attributes of the Envelope to be queried and set simultaneously to avoid complications and inconsistencies of setting them individually.

Product Availability

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


Method Summary
 void putMCoords(double mMin, double mMax)
          Sets the minimum and maximum M values simultaneously.
 void putZCoords(double zMin, double zMax)
          Sets the minimum and maximum Z values simultaneously.
 void queryMCoords(double[] mMin, double[] mMax)
          Queries the minimum and maximum M values simultaneously.
 void queryZCoords(double[] zMin, double[] zMax)
          Queries the minimum and maximum Z values simultaneously.
 
Methods inherited from interface com.esri.arcgis.geometry.IEnvelope
centerAt, defineFromPoints, expand, expandM, expandZ, getDepth, getHeight, getLowerLeft, getLowerRight, getMMax, getMMin, getUpperLeft, getUpperRight, getWidth, getXMax, getXMin, getYMax, getYMin, getZMax, getZMin, intersect, offset, offsetM, offsetZ, putCoords, queryCoords, setDepth, setHeight, setLowerLeft, setLowerRight, setMMax, setMMin, setUpperLeft, setUpperRight, setWidth, setXMax, setXMin, setYMax, setYMin, setZMax, setZMin, union
 
Methods inherited from interface com.esri.arcgis.geometry.IGeometry
geoNormalize, geoNormalizeFromLongitude, getDimension, getEnvelope, getGeometryType, getSpatialReference, isEmpty, project, queryEnvelope, setEmpty, setSpatialReferenceByRef, snapToSpatialReference
 

Method Detail

putZCoords

void putZCoords(double zMin,
                double zMax)
                throws IOException,
                       AutomationException
Sets the minimum and maximum Z values simultaneously.

Description

Sets the ZMin and ZMax simultaneously. This avoids complications of setting ZMin and ZMax individually in which they could become inconsistent.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

queryZCoords

void queryZCoords(double[] zMin,
                  double[] zMax)
                  throws IOException,
                         AutomationException
Queries the minimum and maximum Z values simultaneously.

Description

Returns the values of ZMin and ZMax respectively.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
zMin - The zMin (out: use single element array)
zMax - The zMax (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

putMCoords

void putMCoords(double mMin,
                double mMax)
                throws IOException,
                       AutomationException
Sets the minimum and maximum M values simultaneously.

Description

Sets the MMin and MMax simultaneously. This avoids complications of setting MMin and MMax individually in which they could become inconsistent.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

queryMCoords

void queryMCoords(double[] mMin,
                  double[] mMax)
                  throws IOException,
                         AutomationException
Queries the minimum and maximum M values simultaneously.

Description

Returns the values of MMin and MMax respectively.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
mMin - The mMin (out: use single element array)
mMax - The mMax (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.