GrapeCity SPREAD for Windows Forms 12.0J
RegexOptions プロパティ


正規表現オプションを取得または設定します。
構文
'Declaration
 
Public Property RegexOptions As RegexOptions
'使用法
 
Dim instance As RegularExpressionValidator
Dim value As RegexOptions
 
instance.RegexOptions = value
 
value = instance.RegexOptions
public RegexOptions RegexOptions {get; set;}

プロパティ値

System.Text.RegularExpressions.RegexOptionsのビットごとの組み合わせ。デフォルト値はSystem.Text.RegularExpressions.RegexOptions.Noneです。
例外
例外説明
System.ComponentModel.InvalidEnumArgumentException指定された値が有効な System.Text.RegularExpressions.RegexOptions ではありません。
System.ArgumentException 指定された値が無効な列挙値との組み合わせです。
解説
このプロパティを設定した場合は、指定した列挙値の組み合わせを使用して検証が実行されます。
次のサンプルコードは、正規表現バリデーターを使用します。
//The error backcolor is displayed if the value is invalid
FarPoint.Win.Spread.CellStyleNotify cnotify = new FarPoint.Win.Spread.CellStyleNotify();
cnotify.InvalidCellStyle.BackColor = Color.Lime;
FarPoint.Win.Spread.RegularExpressionValidator rvalidator = new FarPoint.Win.Spread.RegularExpressionValidator();
rvalidator.Expression = "AA";
rvalidator.RegexOptions = System.Text.RegularExpressions.RegexOptions.IgnoreCase;
rvalidator.NullIsValid = true;
rvalidator.Actions.Add(cnotify);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), rvalidator);
'The error backcolor is displayed if the value is invalid
Dim cnotify As New FarPoint.Win.Spread.CellStyleNotify()
cnotify.InvalidCellStyle.BackColor = Color.Lime
Dim rvalidator As New FarPoint.Win.Spread.RegularExpressionValidator()
rvalidator.Expression = "AA"
rvalidator.RegexOptions = System.Text.RegularExpressions.RegexOptions.IgnoreCase
rvalidator.NullIsValid = True
rvalidator.Actions.Add(cnotify)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), rvalidator)
参照

RegularExpressionValidator クラス
RegularExpressionValidator メンバ
Expression プロパティ

 

 


Copyright © 2004 GrapeCity inc.