RectangleF.Intersect

Intersect(RectangleF)

Replaces this RectangleF structure with the intersection of itself and the specified RectangleF structure.

public void Intersect(RectangleF rect)
ParameterTypeDescription
rectRectangleFThe rectangle to intersect.

See Also


Intersect(RectangleF, RectangleF)

Returns a RectangleF structure that represents the intersection of two rectangles. If there is no intersection, and empty RectangleF is returned.

public static RectangleF Intersect(RectangleF a, RectangleF b)
ParameterTypeDescription
aRectangleFA rectangle to intersect.
bRectangleFA rectangle to intersect.

Return Value

A third RectangleF structure the size of which represents the overlapped area of the two specified rectangles.

See Also