Spread Windows Forms 7.0 Product Documentation
Equals Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : Equals Method


o
Object with which to compare the style settings of the current object

Glossary Item Box

Determines whether the style settings of this object are equivalent to the object specified.

Syntax

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

Parameters

o
Object with which to compare the style settings of the current object

Return Value

Boolean: true if the specified object is equivalent to this StyleInfo object; false otherwise

Remarks

Two StyleInfo objects are considered equivalent if all their properties are equal.

Example

C#Copy Code
FarPoint.Win.Spread.StyleInfo clone = new FarPoint.Win.Spread.StyleInfo();
clone.BackColor = Color.Yellow;
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(clone);
bool b;
b = si.Equals(clone);
if (b == true)
{
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;
}
Visual BasicCopy Code
Dim clone As New FarPoint.Win.Spread.StyleInfo
clone.BackColor = Color.Yellow
Dim si As New FarPoint.Win.Spread.StyleInfo(clone)
Dim b As Boolean
b = si.Equals(clone)
If b = True Then
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si
End If

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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