MonobjcMonobjc Documented Class Library
DrawAtPointFromRectOperationFraction Method (__target, point, srcRect, op, delta)
NamespacesMonobjc.AppKitCIImage_AppKitAdditionsDrawAtPointFromRectOperationFraction(CIImage, NSPoint, NSRect, NSCompositingOperation, CGFloat)

Draws all or part of the image at the specified point in the current coordinate system.

Original signature is '- (void)drawAtPoint:(NSPoint)point fromRect:(NSRect)srcRect operation:(NSCompositingOperation)op fraction:(CGFloat)delta'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static void DrawAtPointFromRectOperationFraction(
	this CIImage __target,
	NSPoint point,
	NSRect srcRect,
	NSCompositingOperation op,
	CGFloat delta
)
<ExtensionAttribute> _
Public Shared Sub DrawAtPointFromRectOperationFraction ( _
	__target As CIImage, _
	point As NSPoint, _
	srcRect As NSRect, _
	op As NSCompositingOperation, _
	delta As CGFloat _
)
[ExtensionAttribute]
public:
static void DrawAtPointFromRectOperationFraction(
	CIImage^ __target, 
	NSPoint point, 
	NSRect srcRect, 
	NSCompositingOperation op, 
	CGFloat delta
)
Parameters
__target (CIImage)
The target instance.
point (NSPoint)
The location in the current coordinate system at which to draw the image.
srcRect (NSRect)
The source rectangle specifying the portion of the image you want to draw. The coordinates of this rectangle must be specified using the image's own coordinate system.
op (NSCompositingOperation)
The compositing operation to use when drawing the image.
delta (CGFloat)
The opacity of the image, specified as a value from 0.0 to 1.0. Specifying a value of 0.0 draws the image as fully transparent while a value of 1.0 draws the image as fully opaque. Values greater than 1.0 are interpreted as 1.0.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type CIImage. When you use instance method syntax to call this method, omit the first parameter.
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)