<-- Previous || Up || Next -->

Is False Function
Comparisons Class

Public Function IsFalse( _
    ByVal vValue As Variant _
    ) As Boolean

Return True if the argument vValue is "False".

Examples:
    IsFalse(23) = False
    IsFalse(0) = True
    IsFalse("Hello.") = True
    IsFalse("True") = False
    IsFalse("False") = True
    IsFalse("1") = False
See also:
    IsTrue Function
    IsOn Function
vValue: Value which is checked to see if it is False. If vValue is numeric, return True if it equals 0 (zero). If vValue is a string, return True if it does NOT equal "on", "true", "yes", "1", or "+". Function returns False otherwise.
Note: This is the opposite of the IsOn function.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.