RectangleFIntersect Method (RectangleF, RectangleF) |
Returns a System.Drawing.RectangleF structure that represents the intersection
of two rectangles. If there is no intersection, and empty System.Drawing.RectangleF
is returned.
Namespace:
Easymap.AddIn.Common.Graphics
Assembly:
EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.0.0.0
Syntax public static RectangleF Intersect(
RectangleF a,
RectangleF b
)
Public Shared Function Intersect (
a As RectangleF,
b As RectangleF
) As RectangleF
Parameters
- a
- Type: Easymap.AddIn.Common.GraphicsRectangleF
A rectangle to intersect. - b
- Type: Easymap.AddIn.Common.GraphicsRectangleF
A rectangle to intersect.
Return Value
Type:
RectangleF
A third System.Drawing.RectangleF structure the size of which represents
the overlapped area of the two specified rectangles.
See Also