SPREAD for WPF 3.0J - GcSpreadGrid
AllowDeleteToNull プロパティ (NumberCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > NumberCellType クラス : AllowDeleteToNull プロパティ
UI での削除操作によってすべてのテキストが削除されたときに値を null 参照 (Visual Basicでは Nothing) と 0 のどちらにするかを示す値を取得または設定します。
シンタックス
'宣言
 
Public Property AllowDeleteToNull As Boolean
public bool AllowDeleteToNull {get; set;}

プロパティ値

UI での削除操作によってすべてのテキストが削除されたときに値を null 参照 (Visual Basicでは Nothing) にするかどうかを示す System.Boolean 値。
使用例
次のサンプルはNumberCellTypeを作成しNullの非許可および入力候補値を設定します。
public void CreateNumberCell1()
{
NumberCellType numberCellType1 = new NumberCellType();
//Editing value cannot delete to null.
numberCellType1.AllowDeleteToNull = false;

numberCellType1.NegativeForeground = new SolidColorBrush(Colors.Pink);
numberCellType1.ShowRecommendedValue = true;
numberCellType1.RecommendedValue = 100;
this._gcSpreadGrid1[0, 0].CellType = numberCellType1;
}
Public Sub CreateNumberCell1()
Dim numberCellType1 As New NumberCellType()
'Editing value cannot delete to null.
numberCellType1.AllowDeleteToNull = False

numberCellType1.NegativeForeground = New SolidColorBrush(Colors.Pink)
numberCellType1.ShowRecommendedValue = True
numberCellType1.RecommendedValue = 100
Me._gcSpreadGrid1(0, 0).CellType = numberCellType1
End Sub
参照

NumberCellType クラス
NumberCellType メンバ