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


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())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

Row Class
Row Members

 

 


Copyright © GrapeCity, inc. All rights reserved.