CGRect.Intersect Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Intersect(CGRect) |
Replaces this CGRect with the intersection of itself and the specified CGRect. |
Intersect(CGRect, CGRect) |
Returns a third CGRect structure that represents the intersection of two other CGRect structures. If there is no intersection, an empty CGRect is returned. |
Intersect(CGRect)
Intersect(CGRect, CGRect)
public static CoreGraphics.CGRect Intersect (CoreGraphics.CGRect a, CoreGraphics.CGRect b);
static member Intersect : CoreGraphics.CGRect * CoreGraphics.CGRect -> CoreGraphics.CGRect
Parameters
- a
- CGRect
A rectangle to intersect.
- b
- CGRect
A rectangle to intersect.
Returns
A CGRect that represents the intersection of a
and b
.
Remarks
To be added