MESCIUS SPREAD for Windows Forms 15.0J
Reset メソッド (StyleInfo)
使用例 

StyleInfoオブジェクトのすべてのスタイル設定を デフォルト設定にリセットします。
構文
'宣言
 
Public Overrides Sub Reset() 
public override void Reset()
解説
このメソッドは、スタイルに関連したすべてのプロパティをデフォルト値にリセットします。
使用例
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
DialogResult dlg;
si.BackColor = Color.Yellow;
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the properties?");
if (dlg == DialogResult.OK)
{
si.Reset();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.BackColor = Color.Yellow
fpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the properties?")
If dlg = DialogResult.OK Then
si.Reset()
fpSpread1.ActiveSheet.DefaultStyle = si
End If
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© MESCIUS inc. All rights reserved.