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

SheetStylePropertyオブジェクト
スタイル設定(プロパティ)をデフォルト設定にリセットします。
構文
'宣言
 
Public Overridable Sub ResetProperty( _
   ByVal styleProperty As SheetStyleProperty _
) 
public virtual void ResetProperty( 
   SheetStyleProperty styleProperty
)

パラメータ

styleProperty
SheetStylePropertyオブジェクト
使用例
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 property?");
if (dlg == DialogResult.OK)
{
si.ResetProperty(FarPoint.Win.Spread.SheetStyleProperty.BackColor);
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 property?")
If dlg = DialogResult.OK Then
si.ResetProperty(FarPoint.Win.Spread.SheetStyleProperty.BackColor)
fpSpread1.ActiveSheet.DefaultStyle = si
End If
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© MESCIUS inc. All rights reserved.