PowerTools SPREAD for ASP.NET 8.0J
GetHashCode メソッド (StyleInfo)

このオブジェクトのハッシュコードを返します。
構文
'Declaration
 
Public Overrides Function GetHashCode() As Integer
public override int GetHashCode()

戻り値の型

ハッシュコードを表すInteger
この例では、スタイルのハッシュコードを返します。
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo("HeaderDefault"); 
si.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red); 
FpSpread1.ActiveSheetView..ColumnHeader.DefaultStyle = si;  
 
Response.Write(si.GetHashCode().ToString());
Dim si As New FarPoint.Web.Spread.StyleInfo("HeaderDefault")
si.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si
 
Response.Write(si.GetHashCode().ToString())
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.