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


SheetStylePropertyオブジェクト
スタイル設定(プロパティ)をデフォルト設定にリセットします。
構文
'Declaration
 
Public Overridable Sub ResetProperty( _
   ByVal styleProperty As SheetStyleProperty _
) 
'使用法
 
Dim instance As StyleInfo
Dim styleProperty As SheetStyleProperty
 
instance.ResetProperty(styleProperty)
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 メンバ

 

 


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