Finds all rectangles contained by the passed rectangle
Namespace:
VelocityDBExtensions.Spatial
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public void Contains(
Rectangle r,
Func<Rectangle, bool> v
)
Public Sub Contains (
r As Rectangle,
v As Func(Of Rectangle, Boolean)
)
public:
void Contains(
Rectangle r,
Func<Rectangle, bool>^ v
)
member Contains :
r : Rectangle *
v : Func<Rectangle, bool> -> unit
Parameters
- r
- Type: VelocityDBExtensions.SpatialRectangle
The rectangle for which this method finds contained rectangles. - v
- Type: SystemFuncRectangle, Boolean
if return true, continue seach
See Also