MonobjcMonobjc Documented Class Library
AppendBezierPathWithRoundedRectXRadiusYRadius Method (rect, xRadius, yRadius)
NamespacesMonobjc.AppKitNSBezierPathAppendBezierPathWithRoundedRectXRadiusYRadius(NSRect, CGFloat, CGFloat)

Appends a rounded rectangular path to the receiver’s path.

Original signature is '- (void)appendBezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)yRadius'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void AppendBezierPathWithRoundedRectXRadiusYRadius(
	NSRect rect,
	CGFloat xRadius,
	CGFloat yRadius
)
Public Overridable Sub AppendBezierPathWithRoundedRectXRadiusYRadius ( _
	rect As NSRect, _
	xRadius As CGFloat, _
	yRadius As CGFloat _
)
public:
virtual void AppendBezierPathWithRoundedRectXRadiusYRadius(
	NSRect rect, 
	CGFloat xRadius, 
	CGFloat yRadius
)
Parameters
rect (NSRect)
The rectangle that defines the basic shape of the path.
xRadius (CGFloat)
The radius of each corner oval along the x-axis. Values larger than half the rectangle’s width are clamped to half the width.
yRadius (CGFloat)
The radius of each corner oval along the y-axis. Values larger than half the rectangle’s height are clamped to half the 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.AppKit (Module: Monobjc.AppKit)