false (value)
The false value is a boolean "zero". It is the only alternative to the boolean true value.
Suppose you want to attach the image pointer im to a CImage object I. The following script tests whether Attach was successful:
|  | -- returns true if im is attached. | 
|  | -- Exit if bSuccess is false | 
Alternatively, the same result may be obtained by simpler, more compact code that does not test against false:
|  | -- returns true if im is attached. | 
|  | -- Exit if bSuccess is false |