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
| Name | Type | Comment | Kind |
|---|---|---|---|
| object | IObject | foreign objet to check | input |
Code
Declaration
METHOD isEqual :BOOL
VAR_INPUT
(* foreign objet to check*)
object :IObject;
END_VAR