Array Collection - IsEqual Event

Fired whenever the collection needs to compare two items

Member of Array Collection (PRIM_ACOL)

Parameters

NameTypeData TypeDescription
Object*InputPRIM_OBJTInstance to compare
Subject*InputPRIM_OBJTInstance to compare
Equal*BothBooleanReturn True if the two instances are considered equal

Details

The IsEqual event is fired whenever the collection needs to determine if two components are equal.
 
This is typically handled automatically when performing actions that require searching such as Remove.  The event allows you to determine whether the object being tested is the object being searched for.
 
This feature is provide for completeness and is unlikely to be required for most development purposes.

Example

The source and object parameters contain the two instances to compare.
 
Here the name property of the two "Customer" objects is being tested.
Evtroutine Handling(#Collection.IsEqual) Subject(#Subject) Object(#Object) Equal(#Equal)
   #Equal := #Subject.CustomerName.Uppercase = #Object.CustomerName.Uppercase
Endroutine

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2