EventArgs: Equals

Equals

This function determines if the value passed in is the same as the current object instance. Meaning, are the Value and this object the same object in memory.

This should be overriden for different forms of equality. An example would be if this class contained a Name property and equality is determined by the names.



 Public Function Equals(
	  ByRef Value As Variant ) As Boolean

Parameters

Value
[ByRef] Variant. The value to compare this instance to.

Return Values

Boolean -  True if Value is equal to this instance, False otherwise.

See Also

Project CorLib Overview

Class EventArgs Overview