Rectangle.Intersect
Contents
[
Hide
]Intersect(Rectangle, Rectangle)
Returns a third Rectangle structure that represents the intersection of two other Rectangle structures. If there is no intersection, an empty Rectangle is returned.
public static Rectangle Intersect(Rectangle a, Rectangle b)
Parameter | Type | Description |
---|---|---|
a | Rectangle | First rectangle to intersect. |
b | Rectangle | Second rectangle to intersect. |
Return Value
A Rectangle that represents the intersection of a and b.
See Also
- struct Rectangle
- namespace System.Drawing
- assembly Aspose.Drawing
Intersect(Rectangle)
Replaces this Rectangle with the intersection of itself and the specified Rectangle.
public void Intersect(Rectangle rect)
Parameter | Type | Description |
---|---|---|
rect | Rectangle | The Rectangle with which to intersect. |
See Also
- struct Rectangle
- namespace System.Drawing
- assembly Aspose.Drawing