MonobjcMonobjc Documented Class Library
CGGeometry Class
NamespacesMonobjc.ApplicationServicesCGGeometry

[Missing <summary> documentation for "T:Monobjc.ApplicationServices.CGGeometry"]

Declaration Syntax
C#Visual BasicVisual C++
public static class CGGeometry
Public NotInheritable Class CGGeometry
public ref class CGGeometry abstract sealed
Members
All MembersMethods



IconMemberDescription
CGPointCreateDictionaryRepresentation(CGPoint)

Returns a dictionary representation of the specified point.

Original signature is 'CFDictionaryRef CGPointCreateDictionaryRepresentation( CGPoint point );'

Available in Mac OS X v10.5 and later.


CGPointEqualToPoint(CGPoint, CGPoint)

Returns whether two points are equal.

Original signature is 'bool CGPointEqualToPoint ( CGPoint point1, CGPoint point2 );'

Available in Mac OS X v10.0 and later.


CGPointMake(CGFloat, CGFloat)

Returns a point with the specified coordinates.

Original signature is 'CGPoint CGPointMake ( CGFloat x, CGFloat y );'

Available in Mac OS X v10.0 and later.


CGPointMakeWithDictionaryRepresentation(NSDictionary, CGPoint%)

Fills in a point using the contents of the specified dictionary.

Original signature is 'bool CGPointMakeWithDictionaryRepresentation( CFDictionaryRef dict, CGPoint *point );'

Available in Mac OS X v10.5 and later.


CGRectContainsPoint(CGRect, CGPoint)

Returns whether a rectangle contains a specified point.

Original signature is 'bool CGRectContainsPoint ( CGRect rect, CGPoint point );'

Available in Mac OS X v10.0 and later.


CGRectContainsRect(CGRect, CGRect)

Returns whether the first rectangle contains the second rectangle.

Original signature is 'bool CGRectContainsRect ( CGRect rect1, CGRect rect2 );'

Available in Mac OS X v10.0 and later.


CGRectCreateDictionaryRepresentation(CGRect)

Returns a dictionary representation of the provided rectangle.

Original signature is 'CFDictionaryRef CGRectCreateDictionaryRepresentation( CGRect rect );'

Available in Mac OS X v10.5 and later.


CGRectDivide(CGRect, CGRect%, CGRect%, CGFloat, CGRectEdge)

Divides a source rectangle into two component rectangles.

Original signature is 'void CGRectDivide ( CGRect rect, CGRect *slice, CGRect *remainder, CGFloat amount, CGRectEdge edge );'

Available in Mac OS X v10.0 and later.


CGRectEqualToRect(CGRect, CGRect)

Returns whether two rectangles are equal in size and position.

Original signature is 'bool CGRectEqualToRect ( CGRect rect1, CGRect rect2 );'

Available in Mac OS X v10.0 and later.


CGRectGetHeight(CGRect)

Returns the height of a rectangle.

Original signature is 'CGFloat CGRectGetHeight ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMaxX(CGRect)

Returns the x-coordinate that establishes the right edge of a rectangle.

Original signature is 'CGFloat CGRectGetMaxX ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMaxY(CGRect)

Returns the y-coordinate that establishes the top edge of a rectangle.

Original signature is 'CGFloat CGRectGetMaxY ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMidX(CGRect)

Returns the x- coordinate that establishes the center of a rectangle.

Original signature is 'CGFloat CGRectGetMidX ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMidY(CGRect)

Returns the y-coordinate that establishes the center of a rectangle.

Original signature is 'CGFloat CGRectGetMidY ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMinX(CGRect)

Returns the x-coordinate that establishes the left edge of a rectangle.

Original signature is 'CGFloat CGRectGetMinX ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetMinY(CGRect)

Returns the y-coordinate that establishes the bottom edge of a rectangle.

Original signature is 'CGFloat CGRectGetMinY ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectGetWidth(CGRect)

Returns the width of a rectangle.

Original signature is 'CGFloat CGRectGetWidth ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectInset(CGRect, CGFloat, CGFloat)

Returns a rectangle that is smaller or larger than the source rectangle, with the same center point.

Original signature is 'CGRect CGRectInset ( CGRect rect, CGFloat dx, CGFloat dy );'

Available in Mac OS X v10.0 and later.


CGRectIntegral(CGRect)

Returns the smallest rectangle that results from converting the source rectangle values to integers.

Original signature is 'CGRect CGRectIntegral ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectIntersection(CGRect, CGRect)

Returns the intersection of two rectangles.

Original signature is 'CGRect CGRectIntersection ( CGRect r1, CGRect r2 );'

Available in Mac OS X v10.0 and later.


CGRectIntersectsRect(CGRect, CGRect)

Returns whether two rectangles intersect.

Original signature is 'bool CGRectIntersectsRect ( CGRect rect1, CGRect rect2 );'

Available in Mac OS X v10.0 and later.


CGRectIsEmpty(CGRect)

Returns whether a rectangle has zero width or height, or is a null rectangle.

Original signature is 'bool CGRectIsEmpty ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectIsInfinite(CGRect)

Returns whether a rectangle is infinite.

Original signature is 'bool CGRectIsInfinite ( CGRect rect );'

Available in Mac OS X v10.4 and later.


CGRectIsNull(CGRect)

Returns whether the rectangle is equal to the null rectangle.

Original signature is 'bool CGRectIsNull ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectMake(CGFloat, CGFloat, CGFloat, CGFloat)

Returns a rectangle with the specified coordinate and size values.

Original signature is 'CGRect CGRectMake ( CGFloat x, CGFloat y, CGFloat width, CGFloat height );'

Available in Mac OS X v10.0 and later.


CGRectMakeWithDictionaryRepresentation(NSDictionary, CGRect%)

Fills in a rectangle using the contents of the specified dictionary.

Original signature is 'bool CGRectMakeWithDictionaryRepresentation( CFDictionaryRef dict, CGRect *rect );'

Available in Mac OS X v10.5 and later.


CGRectOffset(CGRect, CGFloat, CGFloat)

Returns a rectangle with an origin that is offset from that of the source rectangle.

Original signature is 'CGRect CGRectOffset ( CGRect rect, CGFloat dx, CGFloat dy );'

Available in Mac OS X v10.0 and later.


CGRectStandardize(CGRect)

Returns a rectangle with a positive width and height.

Original signature is 'CGRect CGRectStandardize ( CGRect rect );'

Available in Mac OS X v10.0 and later.


CGRectUnion(CGRect, CGRect)

Returns the smallest rectangle that contains the two source rectangles.

Original signature is 'CGRect CGRectUnion ( CGRect r1, CGRect r2 );'

Available in Mac OS X v10.0 and later.


CGSizeCreateDictionaryRepresentation(CGSize)

Returns a dictionary representation of the specified size.

Original signature is 'CFDictionaryRef CGSizeCreateDictionaryRepresentation( CGSize size );'

Available in Mac OS X v10.5 and later.


CGSizeEqualToSize(CGSize, CGSize)

Returns whether two sizes are equal.

Original signature is 'bool CGSizeEqualToSize ( CGSize size1, CGSize size2 );'

Available in Mac OS X v10.0 and later.


CGSizeMake(CGFloat, CGFloat)

Returns a size with the specified dimension values.

Original signature is 'CGSize CGSizeMake ( CGFloat width, CGFloat height );'

Available in Mac OS X v10.0 and later.


CGSizeMakeWithDictionaryRepresentation(NSDictionary, CGSize%)

Fills in a size using the contents of the specified dictionary.

Original signature is 'bool CGSizeMakeWithDictionaryRepresentation( CFDictionaryRef dict, CGSize *size );'

Available in Mac OS X v10.5 and later.


Inheritance Hierarchy
Object
CGGeometry
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.AppKit (Module: Monobjc.AppKit)