Parameters
- o
- Object to compare
Return Value
Boolean: true if the objects are equivalent; false otherwise
This method determines if the specified object is equivalent to this Column object, that is, if it represents the same column or group of columns in the same sheet.
FarPoint.Win.Spread.Column col;
bool b;
col = fpSpread1.ActiveSheet.Columns[0];
b = col.Equals(fpSpread1.ActiveSheet.Columns[0]);
listBox1.Items.Add(b.ToString());
Dim col As FarPoint.Win.Spread.Column Dim b As Boolean col = fpSpread1.ActiveSheet.Columns(0) b = col.Equals(fpSpread1.ActiveSheet.Columns(0)) ListBox1.Items.Add(b.ToString())