RectangleFIntersect(RectangleF, RectangleF) Method |
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.GraphicsAssembly: EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.3.0.0
Syntaxpublic static RectangleF Intersect(
RectangleF a,
RectangleF b
)
Public Shared Function Intersect (
a As RectangleF,
b As RectangleF
) As RectangleF
Parameters
- a RectangleF
- A rectangle to intersect.
- b RectangleF
- A rectangle to intersect.
Return Value
RectangleF
A third System.Drawing.RectangleF structure the size of which represents
the overlapped area of the two specified rectangles.
See Also