RasterCopyFromMemory Method (Byte, RasterAttributes) | 
 
Copies the given memory into the raster.
 
    Namespace: 
   AGI.Foundation.Graphics.Imaging
    Assembly:
   AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void CopyFromMemory(
	byte[] value,
	RasterAttributes attributes
)
Public Sub CopyFromMemory ( 
	value As Byte(),
	attributes As RasterAttributes
)
public:
void CopyFromMemory(
	array<unsigned char>^ value, 
	RasterAttributes^ attributes
)
member CopyFromMemory : 
        value : byte[] * 
        attributes : RasterAttributes -> unit 
Parameters
- value
 - Type: SystemByte
The byte array that contains the raster data to copy. - attributes
 - Type: AGI.Foundation.Graphics.ImagingRasterAttributes
The RasterAttributes that define the raster data being copied. 
See Also