ImageFlip()

Flips the image around

Usage

BOOLEAN = ImageFlip( name, direction )
Argument Summary
name the image object
direction the direction to flip the image. valid: vertical (default), horizontal, horizontalvertical, 90, -90, 180 [optional]

Calling

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

ImageFlip(
   name=?, 
   direction=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageFlip( ArgumentCollection={
   name : ?, 
   direction : ?
} );