====== equals ====== Method of [[:scripting:api:scope:start|IScope]] ===== Description ===== Compare, if objects are equal ===== Parameters ===== * [[:scripting:api:scope:start|IScope]] **pOther** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbResult** ===== Syntax ===== ==== JavaScript ==== var pbResult = Scope.equals(pOther); ==== Visual Basic Script ==== pbResult = Scope.equals pOther ==== C++ ==== VARIANT_BOOL bResult; HRESULT hr = Scope.equals(pOther, &bResult); ===== See Also ===== [[:scripting:api:scope:start|IScope]] ~~NOTOC~~