ebEmpty (constant)

Description

Number representing the type of an Empty variant.

Comments

This constant is equal to 0.

Example

Sub Main()
  Dim MyVariant as Variant
  If VarType(MyVariant) = ebEmpty Then
    MsgBox "This variant has not been assigned a value yet!"
  End If
End Sub

See Also

VarType (function); Variant (data type).

More information

E