RectangleIntersects Method |
Determine whether this rectangle intersects the passed rectangle
Namespace:
VelocityDBExtensions.Spatial
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public bool Intersects(
ref Rectangle? r
)
Public Function Intersects (
ByRef r As Rectangle?
) As Boolean
public:
bool Intersects(
Nullable<Rectangle>% r
)
member Intersects :
r : Nullable<Rectangle> byref -> bool
Parameters
- r
- Type: SystemNullableRectangle
The rectangle that might intersect this rectangle
Return Value
Type:
Booleanreturn true if the rectangles intersect, false if they do not intersect
See Also