GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 : MaxMinBehavior 列挙体 |
'Declaration Public Enum MaxMinBehavior Inherits System.Enum
'使用法 Dim instance As MaxMinBehavior
public enum MaxMinBehavior : System.Enum
メンバ | 説明 |
---|---|
AdjustToMaxMin | 最小値から最大値までの有効な範囲に値を調整します。 |
CancelInput | 最後の入力を取り消して元のテキストを保持します。 |
Clear | 値をnull 参照 (Visual Basicでは Nothing)にクリアします。 |
Keep | 最後の入力を残して元のテキストを保持します。 |
Restore | バックアップ値を指定したプロパティに復元します。 |
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
inputcell1.MaxValue = 50;
inputcell1.MinValue = 0;
inputcell1.MaxMinBehavior = GrapeCity.Win.Spread.InputMan.CellType.MaxMinBehavior.AdjustToMaxMin;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType() inputcell1.MaxValue = 50 inputcell1.MinValue = 0 inputcell1.MaxMinBehavior = GrapeCity.Win.Spread.InputMan.CellType.MaxMinBehavior.AdjustToMaxMin FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1
System.Object
System.ValueType
System.Enum
GrapeCity.Win.Spread.InputMan.CellType.MaxMinBehavior