IsObject Function

Syntax:

IsObject(var)

Group:

Variable Info

Description: Returns the True if var contains an object reference.

Parameters:

Parameter

Description

var

A var contains an object reference if it is objexpr reference.

Example:

Sub Main
  Dim X As Variant
  X = 1
  Debug.Print IsObject(X) 'False
  X = "1"
  Debug.Print IsObject(X) 'False
  Set X = Nothing
  Debug.Print IsObject(X) 'True
End
Sub

See Also:

TypeName, VarType.