Spread Windows Forms 12.0 Product Documentation
Equals Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : Equals Method
Object with which to compare the style settings of the current object
Determines whether the style settings of this object are equivalent to the object specified.
Syntax
'Declaration
 
Public Overrides Function Equals( _
   ByVal o As Object _
) As Boolean
'Usage
 
Dim instance As StyleInfo
Dim o As Object
Dim value As Boolean
 
value = instance.Equals(o)
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
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;
}
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
See Also

Reference

StyleInfo Class
StyleInfo Members