DIAdem Help

VBScript constant: vbFalse

  • Updated2024-09-12
  • 1 minute(s) read

VBScript constant: vbFalse

Provides a constant for False.

Object.vbFalse
ObjectVBS
The constant belongs to the VBS functionality. You do not need to specify this object.
Object.vbFalseVariant 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