Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Cell Class / Equals Method
Object to compare
Example


In This Topic
    Equals Method (Cell)
    In This Topic

    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.

    Syntax
    'Declaration
     
    
    Public Overrides Function Equals( _
       ByVal o 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 o
    )

    Parameters

    o
    Object to compare

    Return Value

    true if the objects are equivalent; false otherwise
    Example
    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.
    See Also