MonobjcMonobjc Documented Class Library
CGPointMake Method (x, y)
NamespacesMonobjc.ApplicationServicesCGPointCGPointMake(Single, Single)
Returns a point structure constructed from coordinate values you provide.
Declaration Syntax
C#Visual BasicVisual C++
public static CGPoint CGPointMake(
	float x,
	float y
)
Public Shared Function CGPointMake ( _
	x As Single, _
	y As Single _
) As CGPoint
public:
static CGPoint CGPointMake(
	float x, 
	float y
)
Parameters
x (Single)
The x-coordinate of the point to construct.
y (Single)
The y-coordinate of the point to construct.
Return Value
Returns a CGPoint structure, representing a single (x,y) coordinate pair.
Remarks
Original declaration is : CGPoint CGPointMake ( float x, float y );
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)