In This Topic
Creates a rectangle that represents the intersetion between a and b. If there is no intersection, null is returned.
Syntax
'Declaration
Public Shared Function Intersect( _
ByVal As Rect, _
ByVal As Rect _
) As Rect
'Usage
Dim a As Rect
Dim b As Rect
Dim value As Rect
value = Rect.Intersect(a, b)
public static Rect Intersect(
Rect ,
Rect
)
Parameters
- a
- b
See Also