MESCIUS SPREAD for ASP.NET 10.0J
GetHashCode メソッド (NamedStyle)

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

戻り値の型

ハッシュコードを表すInteger
解説
GetHashCodeメソッドとハッシュコードの詳細については、Microsoft .NET FrameworkリファレンスのObject.GetHashCodeメソッドを参照してください。
この例では、NamedStyleオブジェクトのハッシュコードを返して、このメンバの使い方を示します。
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle();
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
int i;
si.BackColor = Color.LightBlue;
ns.CopyFrom(si);
i = ns.GetHashCode();
listBox1.Items.Add(i.ToString());
fpSpread1.ActiveSheetView.DefaultStyle = ns;
Dim ns As New FarPoint.Web.Spread.NamedStyle()
Dim si As New FarPoint.Web.Spread.StyleInfo()
si.BackColor = Color.LightBlue
ns.CopyFrom(si)
FpSpread1.ActiveSheetView.DefaultStyle = ns
Dim b As Boolean
Dim doc As New System.Xml.XmlDocument()
Dim node As System.Xml.XmlNode
Dim r As System.Xml.XmlNodeReader
doc.Load("..\files\mystyle.xml")
node = doc.FirstChild
While Not (node.Name.Equals("Style"))
 node = node.NextSibling
End While
r = New System.Xml.XmlNodeReader(node)
r.Read()
b = ns.Deserialize(r)
ListBox1.Items.Add(b)
参照

NamedStyle クラス
NamedStyle メンバ

 

 


© MESCIUS inc. All rights reserved.