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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : GetHashCode Method
Gets the hash code for this row.
Syntax
'Declaration
 
Public Overrides Function GetHashCode() As Integer
'Usage
 
Dim instance As Row
Dim value As Integer
 
value = instance.GetHashCode()
public override int GetHashCode()

Return Value

Integer value of hash code
Example
This example illustrates the use of this member by returning the hash code for the row.
FarPoint.Win.Spread.Row r;
int i;
r = fpSpread1.ActiveSheet.Rows[0];
i = r.GetHashCode();
listBox1.Items.Add(i.ToString());
Dim r As FarPoint.Win.Spread.Row
Dim i As Integer
r = FpSpread1.ActiveSheet.Rows(0)
i = r.GetHashCode()
ListBox1.Items.Add(i.ToString())
See Also

Reference

Row Class
Row Members