MonobjcMonobjc Documented Class Library
GetBitmapDataPlanes Method (data)
NamespacesMonobjc.AppKitNSBitmapImageRepGetBitmapDataPlanes(IntPtr)

Returns by indirection bitmap data of the receiver separated into planes.

Original signature is '- (void)getBitmapDataPlanes:(unsigned char **)data'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void GetBitmapDataPlanes(
	IntPtr data
)
Public Overridable Sub GetBitmapDataPlanes ( _
	data As IntPtr _
)
public:
virtual void GetBitmapDataPlanes(
	IntPtr data
)
Parameters
data (IntPtr)
On return, a C array of five character pointers. If the bitmap data is in planar configuration, each pointer will be initialized to point to one of the data planes. If there are less than five planes, the remaining pointers will be set to NULL. If the bitmap data is in meshed configuration, only the first pointer will be initialized; the others will be NULL.
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)