Spread for ASP.NET 7.0 Product Documentation
Equals Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > AlternatingRow Class : Equals Method


o
Object to compare

Glossary Item Box

Determines whether the specified object is equal to another object in this alternating row.

Syntax

Visual Basic (Declaration) 
Public Overrides Function Equals( _
   ByVal o As Object _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As AlternatingRow
Dim o As Object
Dim value As Boolean
 
value = instance.Equals(o)
C# 
public override bool Equals( 
   object o
)

Parameters

o
Object to compare

Return Value

Boolean: true if the objects are equivalent; false otherwise

Remarks

Returns true if the specified object is equivalent to this alternating row; that is, if they represent the same alternating row in the same sheet.

Example

C#Copy Code
FarPoint.Web.Spread.AlternatingRow ar;
FarPoint.Web.Spread.NamedStylens = new FarPoint.Web.Spread.NamedStyle("TestStyle");
ns.BackColor = Color.Yellow;
ns.Parent = "DataAreaDefault;"
ar = FpSpread1.ActiveSheetView.AlternatingRows[0];
ar.StyleName = "TestStyle";
FpSpread1.NamedStyles.Add(ns);

bool b;
b = ar.Equals(FpSpread1.ActiveSheetView.AlternatingRows[0]);
Response.Write(b.ToString());
Visual BasicCopy Code
Dim ar As FarPoint.Web.Spread.AlternatingRow
Dim ns As New FarPoint.Web.Spread.NamedStyle("TestStyle")
ns.BackColor = Color.Yellow
ns.Parent = "DataAreaDefault"
ar = FpSpread1.ActiveSheetView.AlternatingRows(0)
ar.StyleName = "TestStyle"
FpSpread1.NamedStyles.Add(ns)

Dim b As Boolean
b = ar.Equals(FpSpread1.ActiveSheetView.AlternatingRows(0))
Response.Write(b.ToString()) 

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.