Name
Is Operator
Syntax
object1 Is object2
object1Use: Required
Data Type: Object
An object variable.
object2Use: Required
Data Type: Object
A second object variable.
Return Value
Boolean.
Description
Compares two object variables to determine whether they reference the same object.
Rules at a Glance
Both
object1andobject2must be object references, or runtime error 424, “Object required,” results.The operation returns a result of
Trueif the object references are identical andFalseif they are not.It is also possible to determine whether an object contains a valid reference by replacing
object2with the specialNothingkeyword. For example:If oDrive Is Nothing Then
returns
TrueifoDrivedoes not refer to an object andFalseif it does. This should be used to test for an uninitialized object reference.
Programming Tips and Gotchas
Note that objects in VBScript are references—that is, they reference an object in memory. This means that if two variables reference the same object and you make changes to the object’s properties using the first object variable, those changes are reflected when you retrieve the object’s property settings using the second object variable.
You may wonder why there is a special
Isoperator for objects. When you perform a comparison of scalar variables, you want to know whether their values are the same. But in the case of objects, you want to know whether two references point to a single object. (Many objects have identical property values; a test for equal values is ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access