PowerTools SPREAD for Windows Forms 8.0J
RegularExpression プロパティ


正規表現文字列を取得または設定します。
構文
'Declaration
 
Public Property RegularExpression As String
'使用法
 
Dim instance As RegularExpressionCellType
Dim value As String
 
instance.RegularExpression = value
 
value = instance.RegularExpression
public string RegularExpression {get; set;}

プロパティ値

正規表現を含む String
次のサンプル コードは、正規表現型セルを作成します。このセルに有効な値の例は 112400827 です。
FarPoint.Win.Spread.CellType.RegularExpressionCellType reg = new FarPoint.Win.Spread.CellType.RegularExpressionCellType();
        reg.RegularExpression = "^\\d{9}$";
        fpSpread1.Sheets[0].Cells[0, 0].CellType = reg;
Dim reg As New FarPoint.Win.Spread.CellType.RegularExpressionCellType()
        reg.RegularExpression = "^\d{9}$"
        FpSpread1.Sheets(0).Cells(0, 0).CellType = reg
参照

RegularExpressionCellType クラス
RegularExpressionCellType メンバ

 

 


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