This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Is Operator Example
This example uses the
Is operator to compare two object references. The object variable names are generic and used for illustration purposes only.
Dim MyObject, YourObject, ThisObject, OtherObject, ThatObject, MyCheck
Set YourObject = MyObject ' Assign object references.
Set ThisObject = MyObject
Set ThatObject = OtherObject
MyCheck = YourObject Is
ThisObject ' Returns True.
MyCheck = ThatObject Is
ThisObject ' Returns False.
' Assume MyObject <> OtherObject
MyCheck = MyObject Is
ThatObject ' Returns False.