ComponentOne Bitmap for UWP
AllocateClearedMemory Method

C1.UWP.DX Assembly > C1.Util.DX Namespace > DXUtil Class : AllocateClearedMemory Method
Size of the buffer to allocate.
Default value used to clear the buffer.
Alignment, 16 bytes by default.
Allocate an aligned memory buffer and clear it with a specified value (0 by default).
Syntax
'Declaration
 
Public Shared Function AllocateClearedMemory( _
   ByVal sizeInBytes As System.Integer, _
   Optional ByVal clearValue As System.Byte, _
   Optional ByVal align As System.Integer _
) As System.IntPtr
public static System.IntPtr AllocateClearedMemory( 
   System.int sizeInBytes,
   System.byte clearValue,
   System.int align
)

Parameters

sizeInBytes
Size of the buffer to allocate.
clearValue
Default value used to clear the buffer.
align
Alignment, 16 bytes by default.

Return Value

A pointer to a buffer aligned.
Remarks
To free this buffer, call FreeMemory.
See Also

Reference

DXUtil Class
DXUtil Members