Parameters
- envelope
- Envelope to intersect with.
Return Value
The intersecting envelope or null if they don't intersect.
Envelope env1 = EnvelopeBuilder.CreateEnvelope(0, 0, 1, 1, SpatialReferences.WGS84); Envelope env2 = EnvelopeBuilder.CreateEnvelope(0.5, 0.5, 1.5, 1.5, SpatialReferences.WGS84); Envelope env3 = env1.Intersection(env2); bool intersects = env1.Intersects(env2); // true
Target Platforms: Windows 10, Windows 8.1, Windows 7