CALL "P$DRAWBITMAP" USING fileName                            [xPosition, yPosition]                            [positionMode]                           [positionUnits]                           [sizeWidth, sizeHeight]                           [sizeUnits]                    [GIVING returnCode]  | 
fileName  | PIC X(n)  | Specifies the bitmap file.  The following extensions are supported: BMP, JPG, PNG, GIF  | 
xPosition  | any numeric data item  | Optional. X coordinate of the bitmap.  | 
yPosition  | any numeric data item  | Optional. Y coordinate of the bitmap.  | 
positionMode  | PIC X(n)  | Optional. Must contain “Absolute”  | 
positionUnits  | PIC X(n)  | Optional. Can be either "Inches", "Metric", "Characters", or "Device Units". This value should match with the value of SizeUnits.  | 
sizeWidth  | any numeric data item  | Optional. Width of the bitmap.  | 
sizeHeight  | any numeric data item  | Optional. Height of the bitmap.  | 
sizeUnits  | PIC X(n)  | Optional. Can be either "Inches", "Metric", "Characters", or "Device Units". This value should match with the value of PositionUnits.  | 
returnCode  | PIC 9(n)  | Receives the exit status: zero for failure, non-zero for success  |