GrapeCity SPREAD for Windows Forms 12.0J
ValueProcessOption プロパティ


ValueProcessOptionオブジェクトを取得または設定します。
構文
'Declaration
 
Public Property ValueProcessOption As ValueProcessOption
'使用法
 
Dim instance As ValueProcess
Dim value As ValueProcessOption
 
instance.ValueProcessOption = value
 
value = instance.ValueProcessOption
public ValueProcessOption ValueProcessOption {get; set;}

プロパティ値

値処理オプション。デフォルト値はValueProcessOption.Keepです。
例外
例外説明
System.ComponentModel.InvalidEnumArgumentException指定された値が有効なValueProcessOptionではありません。
次のサンプルコードは、無効な値をクリアします。
//Typing a value outside the range clears the value when leaving the cell
FarPoint.Win.Spread.ValueProcess cnotify = new FarPoint.Win.Spread.ValueProcess();
cnotify.ValueProcessOption = FarPoint.Win.Spread.ValueProcessOption.Clear;
FarPoint.Win.Spread.TextLengthValidator tvalid = new FarPoint.Win.Spread.TextLengthValidator();
tvalid.LengthUnit = FarPoint.Win.Spread.LengthUnit.Char;
tvalid.MaximumLength = 6;
tvalid.MinimumLength = 0;
tvalid.Actions.Add(cnotify);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), tvalid);
'Typing a value outside the range clears the value when leaving the cell
Dim cnotify As New FarPoint.Win.Spread.ValueProcess()
cnotify.ValueProcessOption = FarPoint.Win.Spread.ValueProcessOption.Clear
Dim tvalid As New FarPoint.Win.Spread.TextLengthValidator()
tvalid.LengthUnit = FarPoint.Win.Spread.LengthUnit.Char
tvalid.MaximumLength = 6
tvalid.MinimumLength = 0
tvalid.Actions.Add(cnotify)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), tvalid)
参照

ValueProcess クラス
ValueProcess メンバ

 

 


Copyright © 2004 GrapeCity inc.