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) |
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
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 Basic | Copy 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