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


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

StyleInfo クラス
StyleInfo メンバ

 

 


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