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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also