ebDataObject (constant)

Description Number representing the type of a data object variant.
Comments This constant is equal to 13.
Example This example checks to see whether a variable is a data object.
Sub Main()
  Dim MyVariant as Variant
  If VarType(MyVariant) = ebDataObject Then
    MsgBox "Variant contains a data object."
  End If
End Sub
See Also VarType (function); Variant (data type).