Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Border Class / Equals Method / Equals(Border) Method
Border object to compare to the current border object
Example


In This Topic
    Equals(Border) Method
    In This Topic
    Determines whether the border of the current object is the same as the specified Border object.
    Syntax
    'Declaration
     
    
    Public Overloads Function Equals( _
       ByVal border As Border _
    ) As Boolean
    'Usage
     
    
    Dim instance As Border
    Dim border As Border
    Dim value As Boolean
     
    value = instance.Equals(border)
    public bool Equals( 
       Border border
    )

    Parameters

    border
    Border object to compare to the current border object

    Return Value

    Boolean: true if the specified border object is equal to the current border object; false otherwise
    Example
    This example creates two Border objects and copies the settings of the first object to that of the second, and applies those settings to an instance of a Cell object. The second instance of the Border object is then queried to see if it equals the first instance and the result is returned to a text box.
    FarPoint.Web.Spread.Borderborder=new FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2);
    FarPoint.Web.Spread.Bordercloneborder=new FarPoint.Web.Spread.Border();
    FarPoint.Web.Spread.Cell acell;
    bool bl;
    acell=FpSpread1.Cells[0,0];
    cloneborder.Copy(border);
    bl=cloneborder.Equals(border);
    acell.Border=cloneborder;
    TextBox1.Text=Convert.ToString(bl);
    Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted,Color.Red,2)
    Dim cloneborder As New FarPoint.Web.Spread.Border()
    Dim acell As FarPoint.Web.Spread.Cell
    Dim bl As Boolean
    acell=FpSpread1.Cells(0,0)
    cloneborder.Copy(border)
    bl=cloneborder.Equals(border)
    acell.Border=cloneborder
    TextBox1.Text=bl
    See Also