GrapeCity SPREAD for WPF 2.0J
AllowDeleteToNull プロパティ (NumberCellType)

UI での削除操作によってすべてのテキストが削除されたときに値を null 参照 (Visual Basicでは Nothing) と 0 のどちらにするかを示す値を取得または設定します。
構文
'Declaration
 
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 メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.