Applies an affine transform to a rectangle.
Original signature is : CGRect CGRectApplyAffineTransform ( CGRect rect, CGAffineTransform t );
Available in Mac OS X v10.4 and later.

C# | Visual Basic | Visual C++ |
public static CGRect CGRectApplyAffineTransform( CGRect rect, CGAffineTransform t )
Public Shared Function CGRectApplyAffineTransform ( _ rect As CGRect, _ t As CGAffineTransform _ ) As CGRect
public: static CGRect CGRectApplyAffineTransform( CGRect rect, CGAffineTransform t )

- rect (CGRect)
- The rectangle whose corner points you want to transform.
- t (CGAffineTransform)
- The affine transform to apply to the rect parameter.

The transformed rectangle.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)