Determines if the given extents are fully contained in the container.


Namespace: MapWinView
Assembly: MapWinView (in MapWinView.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function ExtentsFullyContained( _ 
   ByVal Container As Envelope,  _ 
   ByVal Contained As Envelope _ 
) As Boolean
C#
public static bool ExtentsFullyContained(
   Envelope Container,
   Envelope Contained
)
C++
public:
 static bool ExtentsFullyContained(
   Envelope Container,
   Envelope Contained
)
J#
public static bool ExtentsFullyContained(
   Envelope Container,
   Envelope Contained
)
JScript
public static  function ExtentsFullyContained(
   Container : Envelope,
   Contained : Envelope
) : bool

Parameters

Container
The extents which might fully contain 'Contained'.
Contained
The extents which might fully lie within 'Container'.

See Also