Creates a new Envelope which is the geometrical union of two existing Envelopes.

Namespace:  ESRI.ArcGISExplorer.Geometry

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

Syntax

C#
public static Envelope Union(
	Envelope envelopeA,
	Envelope envelopeB
)
Visual Basic (Declaration)
Public Shared Function Union ( _
	envelopeA As Envelope, _
	envelopeB As Envelope _
) As Envelope

Parameters

envelopeA
Type: ESRI.ArcGISExplorer.Geometry..::.Envelope

The first Envelope to union.
envelopeB
Type: ESRI.ArcGISExplorer.Geometry..::.Envelope

The second Envelope to union.

Return Value

A new Envelope.

Remarks

A common use of the Union operation is to create an Envelope representing the extent of multiple notes.

See Also