VBScript constant: vbFalse
- Updated2024-09-12
- 1 minute(s) read
Constants > Tristate Constants > VBScript constant: vbFalse
VBScript constant: vbFalse
Provides a constant for False.
Object.vbFalse
| Object | VBS The constant belongs to the VBS functionality. You do not need to specify this object. |
| Object.vbFalse | Variant with read access vbFalse has the value 0. |
The following example checks the value of the bValue variable:
Dim bValue bValue = False If bValue = vbFalse Then Call MsgBox("Value is 'False'") End If