ebNull (constant)

Description Number representing the type of a Null variant.
Comments This constant is equal to 1.
Example
Sub Main()
  Dim MyVariant
  MyVariant = Null
  If VarType(MyVariant) = ebNull Then
    MsgBox "This variant is Null"
  End If
End Sub
See Also VarType (function); Variant (data type).