MESCIUS SPREAD for ASP.NET 10.0J
RegExpCellType コンストラクタ()

新しいマスク型セルを作成します。
構文
'Declaration
 
Public Function New()
public RegExpCellType()
この例では、マスク型のセル型(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 メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.