MonobjcMonobjc Documented Class Library
CGSizeMake Method (width, height)
NamespacesMonobjc.ApplicationServicesCGSizeCGSizeMake(Single, Single)
Returns a size structure constructed from dimension values you provide.
Declaration Syntax
C#Visual BasicVisual C++
public static CGSize CGSizeMake(
	float width,
	float height
)
Public Shared Function CGSizeMake ( _
	width As Single, _
	height As Single _
) As CGSize
public:
static CGSize CGSizeMake(
	float width, 
	float height
)
Parameters
width (Single)
A width value.
height (Single)
A height value.
Return Value
Returns a CGSize structure with the specified width and height.
Remarks
Original declaration is : CGSize CGSizeMake ( float width, float height );
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)