Spread Windows Forms 12.0 Product Documentation
GetHashCode Method (Cell)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Cell Class : GetHashCode Method
Hash code of an object
Syntax
'Declaration
 
Public Overrides Function GetHashCode() As Integer
'Usage
 
Dim instance As Cell
Dim value As Integer
 
value = instance.GetHashCode()
public override int GetHashCode()

Return Value

Integer with hash code of that object
Example
This example illustrates the use of this member by returning the automatically generated code from a hash table for the cell object.
FarPoint.Win.Spread.Cell aCell;
object o;
bool b;
o = fpSpread1.ActiveSheet.Cells[0, 0];
aCell = (FarPoint.Win.Spread.Cell)o;
b = aCell.Equals(o);
listBox1.Items.Add(b.ToString());
Dim aCell As FarPoint.Win.Spread.Cell
Dim b As Boolean
Dim o As Object
o = fpSpread1.ActiveSheet.Cells(0, 0)
aCell = o
b = aCell.Equals(o)
ListBox1.Items.Add(b.ToString())
See Also

Reference

Cell Class
Cell Members