[]
Creates a rectangle that represents the intersetion between a and b. If there is no intersection, null is returned.
public static Rectangle Intersect(Rectangle a, Rectangle b)
Public Shared Function Intersect(a As Rectangle, b As Rectangle) As Rectangle
Type | Name | Description |
---|---|---|
Rectangle | a | |
Rectangle | b |
Type | Description |
---|---|
Rectangle | A Rectangle that represents the intersetion between a and b. |