DeviceWriteImage Method (UInt16, UInt16, Image) | 
 
            This function allows you to draw a buffered image on to the screen of the
            device (if supported). The image must fit within the device's display
            boundaries. Images will be automatically converted to the displays color
            depth.
            
 
    Namespace: 
   ProScript
    Assembly:
   proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntaxpublic void WriteImage(
	ushort x,
	ushort y,
	Image image
)
Public Sub WriteImage ( 
	x As UShort,
	y As UShort,
	image As Image
)
public:
void WriteImage(
	unsigned short x, 
	unsigned short y, 
	Image^ image
)
member WriteImage : 
        x : uint16 * 
        y : uint16 * 
        image : Image -> unit 
Parameters
- x
 - Type: SystemUInt16
screen x coordinate to draw the image - y
 - Type: SystemUInt16
screen y coordinate to draw the image - image
 - Type: System.DrawingImage
image to draw 
See Also