'DeclarationPublic Function SetPixelArrayInteger( _ ByVal ImageID As Integer, _ ByVal Data() As Integer, _ ByVal DstLeft As Integer, _ ByVal DstTop As Integer, _ ByVal Width As Integer, _ ByVal Height As Integer _ ) As GdPictureStatus
public GdPictureStatus SetPixelArrayInteger( int ImageID, int[] Data, int DstLeft, int DstTop, int Width, int Height )
public function SetPixelArrayInteger( ImageID: Integer; Data: Integerarray of; DstLeft: Integer; DstTop: Integer; Width: Integer; Height: Integer ): GdPictureStatus;
public function SetPixelArrayInteger( ImageID : int, Data : int[], DstLeft : int, DstTop : int, Width : int, Height : int ) : GdPictureStatus;
Parameters
- ImageID
 - GdPicture image identifier.
 - Data
 - Array of pixel data.
 - DstLeft
 - The left destination pixel of the area.
 - DstTop
 - The top destination pixel of the area.
 - Width
 - The width of the destination area in pixel.
 - Height
 - The height of the destination area in pixel.
 
Return Value
            A member of the GdPictureStatus enumeration.
            
