Skip to main content

isEqual

Short summary

This method is used to check if two objects are equal. If the hash code of the objects is identical, then the foreign object is the same.

Return:FALSE: foreign object and object are not the same, TRUE: foreign object and object are the same

  • Return type: BOOL

Parameters

NameTypeCommentKind
objectIObjectforeign objet to checkinput

Code

Declaration

METHOD isEqual :BOOL
VAR_INPUT
(* foreign objet to check*)
object :IObject;
END_VAR