Changes this rectangle to represent the intersection of itself and a supplied rectangle.
Syntax

[C#]

void Intersect(RectangleF rect);
static RectangleF Intersect(RectangleF a, RectangleF b);

[Visual Basic]

Sub Intersect(rect As RectangleF)
Shared Function Intersect(a As RectangleF, b As RectangleF) As RectangleF
Params
Name Description
rect The rectangle to intersect.
a The first rectangle to intersect.
b The second rectangle to intersect.
return The new resultant rectangle.
Notes

None.

Example

None.