Monobjc.ApplicationServices.CGRect.CGRectMake C# (CSharp) Method

CGRectMake() public static method

Returns a rectangle structure constructed from coordinate and dimension values you provide.
Original declaration is : CGRect CGRectMake ( float x, float y, float width, float height );
public static CGRectMake ( CGFloat x, CGFloat y, CGFloat width, CGFloat height ) : CGRect
x CGFloat The x-coordinate of the rectangle's origin point.
y CGFloat The y-coordinate of the rectangle's origin point.
width CGFloat The width of the rectangle.
height CGFloat The height of the rectangle.
return CGRect
		public static CGRect CGRectMake(CGFloat x, CGFloat y, CGFloat width, CGFloat height)
        {
            return new CGRect(x, y, width, height);
        }