MESCIUS SPREAD for Windows Forms 15.0J
Format プロパティ (CharFormatValidator)
使用例 

検証に使用される書式文字列を取得または設定します。
構文
'宣言
 
Public Property Format As String
public string Format {get; set;}

プロパティ値

検証に使用される書式文字列を示すSystem.String.Empty。デフォルト値はSystem.Stringです。
使用例
次のサンプルコードは、文字書式バリデーターを作成します。
FarPoint.Win.Spread.CellStyleNotify cnotify = new FarPoint.Win.Spread.CellStyleNotify();
cnotify.InvalidCellStyle.BackColor = Color.Aqua;
FarPoint.Win.Spread.CharFormatValidator cFormatValidator1 = new FarPoint.Win.Spread.CharFormatValidator();
cFormatValidator1.Format = "Aa";
cFormatValidator1.Actions.Add(cnotify);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), cFormatValidator1);
Dim cnotify As New FarPoint.Win.Spread.CellStyleNotify()
cnotify.InvalidCellStyle.BackColor = Color.Aqua
Dim charFormatValidator1 As New FarPoint.Win.Spread.CharFormatValidator()
charFormatValidator1.Format = "Aa?"
charFormatValidator1.Actions.Add(cnotify)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), charFormatValidator1)
参照

CharFormatValidator クラス
CharFormatValidator メンバ

 

 


© MESCIUS inc. All rights reserved.