MESCIUS SPREAD for Windows Forms 15.0J
RequiredFieldValidator コンストラクタ()
使用例 

デフォルトの空のコンストラクターを表します。
構文
'宣言
 
Public Function New()
public RequiredFieldValidator()
使用例
次のサンプルコードは、必須フィールドバリデーターを使用します。
//Cell 1,1 requires a value
FarPoint.Win.Spread.CellStyleNotify cnotify = new FarPoint.Win.Spread.CellStyleNotify();
cnotify.InvalidCellStyle.BackColor = Color.Fuchsia;
FarPoint.Win.Spread.RequiredFieldValidator requiredv = new FarPoint.Win.Spread.RequiredFieldValidator();
requiredv.Actions.Add(cnotify);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), requiredv);
fpSpread1.Sheets[0].Cells[1, 1].Text = "Value";
'Cell 1,1 requires a value
Dim cnotify As New FarPoint.Win.Spread.CellStyleNotify()
cnotify.InvalidCellStyle.BackColor = Color.Fuchsia
Dim requiredv As New FarPoint.Win.Spread.RequiredFieldValidator()
requiredv.Actions.Add(cnotify)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), requiredv)
FpSpread1.Sheets(0).Cells(1, 1).Text = "Value"
参照

RequiredFieldValidator クラス
RequiredFieldValidator メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.