====== False() ======
Category:  Logical function

\\ 
=====Description=====
This function creates a Boolean value equal to FALSE.

\\ 
=====Use cases=====
Use this function to set, or test for, a Boolean FALSE value.

\\ 
=====Arguments=====
This function does not take any arguments.

**Return value type:** Boolean (FALSE)

\\ 
=====Remarks=====
A Boolean FALSE value is not the same as a text 'FALSE' value.  Refer to the //Type system// link in the "See also"  section for more information.

\\ 
=====Examples=====

Using //False()// within an [[syntax:functions:If]] function:
  if([ThisValue]=[ThatValue],TRUE(), FALSE()) //Returns Boolean FALSE if the two values are not equal.

\\ 
=====See also=====
  * [[syntax:functions:isboolean|IsBoolean(expression)]]
  * [[syntax:functions:true|True()]]
  * [[syntax:types|Type system]]
