Returns true if the specified object is equivalent to this Cell object, that is, if it represents the same cell or group of cells in the same sheet.
'Declaration
Public Overrides Function Equals( _
ByVal As Object _
) As Boolean
'Usage
Dim instance As Cell
Dim o As Object
Dim value As Boolean
value = instance.Equals(o)
public override bool Equals(
object
)
Parameters
- o
- Object to compare
Return Value
true if the objects are equivalent; false otherwise
This example returns true if the specified object is equivalent to this cell object, that is, if it represents the same cell or group of cells in the same sheet.