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
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