ImageXordrawingmode()

Sets the paint mode of this image to alternate between this graphics context's current color and the new specified color

Usage

BOOLEAN = ImageXordrawingmode( name, color )
Argument Summary
name the image object derived from ImageNew() or ImageRead()
color the value of the color, RGB or symbolic name

Calling

Supports named-parameter calling allowing you to use the function like:

ImageXordrawingmode(
   name=?, 
   color=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageXordrawingmode( ArgumentCollection={
   name : ?, 
   color : ?
} );