Syntax
expr IsNot expr
Group
Operator
Description
Return the False if both exprs refer to the same object.
VBA
This language element is not VBA compatible.
See Also
Objects
Example
Sub Main
Dim X As Object
Dim Y As Object
Debug.Print X IsNot Y ' False
End Sub