Initializes a new instance of the Envelope class with the specified minimum and maximum X and Y coordinates and CoordinateSystem.

Namespace:  ESRI.ArcGISExplorer.Geometry

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public Envelope(
	double xMin,
	double yMin,
	double xMax,
	double yMax,
	CoordinateSystem coordinateSystem
)
Visual Basic (Declaration)
Public Sub New ( _
	xMin As Double, _
	yMin As Double, _
	xMax As Double, _
	yMax As Double, _
	coordinateSystem As CoordinateSystem _
)

Parameters

xMin
Type: System..::.Double

The minimum X coordinate of the new Envelope.
yMin
Type: System..::.Double

The minimum Y coordinate of the new Envelope.
xMax
Type: System..::.Double

The maximum X coordinate of the new Envelope.
yMax
Type: System..::.Double

The maximum Y coordinate of the new Envelope.
coordinateSystem
Type: ESRI.ArcGISExplorer.Geometry..::.CoordinateSystem

The CoordinateSystem of the new Envelope.

See Also