PowerTools SPREAD for ASP.NET 8.0J
RegExpCellType コンストラクタ(String)

入力値が有効でない場合に表示するメッセージ(文字列)
表示するメッセージを指定して、新しいマスク型セルを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal errorMessage As String _
)
public RegExpCellType( 
   string errorMessage
)

パラメータ

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

RegExpCellType クラス
RegExpCellType メンバ
オーバーロード一覧
ErrorMessage プロパティ
ValidationExpression プロパティ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.