MESCIUS SPREAD for ASP.NET 10.0J
ValidationExpression プロパティ (RegExpCellType)

セル内の値を検証するための正規表現(マスク)を取得または設定します。
構文
'Declaration
 
Public Property ValidationExpression As String
public string ValidationExpression {get; set;}

プロパティ値

正規表現を含むString
この例では、マスク型のセル型(RegExpCellTypeオブジェクト)を作成し、それをシートの先頭セルに割り当てます。そのErrorMessageをコンストラクタに追加します。ValidationExpressionプロパティも設定します。これにより、ユーザーがマスク(正規表現)に適合しないデータを入力した場合、警告を表示します。
FarPoint.Web.Spread.RegExpCellType re = New FarPoint.Web.Spread.RegExpCellType();
re.ErrorMessage = "SSN ( ex, 123-45-6789 )";
re.ValidationExpression = "^\\d{3}-\\d{2}-\\d{4}$";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = re;
Dim re As New FarPoint.Web.Spread.RegExpCellType()
re.ErrorMessage = "SSN ( ex, 123-45-6789 )"
re.ValidationExpression = "^\d{3}-\d{2}-\d{4}$"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = re
参照

RegExpCellType クラス
RegExpCellType メンバ
ErrorMessage プロパティ

 

 


© MESCIUS inc. All rights reserved.