The AllAreFalse function returns true if all of the provided conditions is false. Otherwise false.
Syntax
|
The AllAreFalse function returns true if all of the provided conditions is false. Otherwise false. |
|
AllAreFalse(condition1, condition2, ...) |
|
Arguments: |
|
|
condition |
Boolean - Conditions to evaluate. |
Remarks
- Example: AllAreFalse(5=25, "hello"="goodbye", false) returns true.
- Example: AllAreFalse(5=5, "hello"="goodbye", false) returns false.
Comments
0 comments
Article is closed for comments.