PowerTools SPREAD for Windows Forms 8.0J
ResetForeColor メソッド (StyleInfo)


ForeColorプロパティをデフォルト値にリセットします。
構文
'Declaration
 
Public Overridable Sub ResetForeColor() 
'使用法
 
Dim instance As StyleInfo
 
instance.ResetForeColor()
public virtual void ResetForeColor()
解説
デフォルトでは、ForeColorプロパティは設定されていません。このプロパティをリセットすると、未設定状態に戻ります。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
DialogResult dlg;
si.ForeColor = Color.Red;
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the forecolor?");
if (dlg == DialogResult.OK)
{
si.ResetForeColor();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.ForeColor = Color.Red
FpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the forecolor?")
If dlg = DialogResult.OK Then
si.ResetForeColor()
FpSpread1.ActiveSheet.DefaultStyle = si
End If
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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