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, CGRect)
public static CoreGraphics.CGRect Intersect(CoreGraphics.CGRect a, CoreGraphics.CGRect b);static member Intersect : CoreGraphics.CGRect * CoreGraphics.CGRect -> CoreGraphics.CGRectParameters
- a
- CGRect
<attribution license="cc4" from="Microsoft" modified="false"></attribution>A rectangle to intersect.
- b
- CGRect
<attribution license="cc4" from="Microsoft" modified="false"></attribution>A rectangle to intersect.
Returns
<attribution license="cc4" from="Microsoft" modified="false"></attribution>
A CGRect that represents the intersection of a and b.
Remarks
To be added