Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== equals ====== Method of [[:scripting:api:pane:start|IPane]] ===== Description ===== Compare, if objects are equal ===== Parameters ===== * [[:scripting:api:pane:start|IPane]] **pOther** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbResult** ===== Syntax ===== ==== JavaScript ==== <code javascript> var pbResult = Pane.equals(pOther); </code>==== Visual Basic Script ==== <code vb> pbResult = Pane.equals pOther </code>==== C++ ==== <code cpp> VARIANT_BOOL bResult; HRESULT hr = Pane.equals(pOther, &bResult); </code>===== See Also ===== [[:scripting:api:pane:start|IPane]] ~~NOTOC~~