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

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

パラメータ

errorMessage
入力値が有効でない場合に表示するメッセージ(文字列)
この例では、7列50行から成るスプレッドシートを作成します。次に、ユーザーが無効なデータを入力したときに表示するメッセージを指定し、CurrencyCellオブジェクトを作成します。ループで、先頭列のセルを通貨型セルに設定し、それらに値を入れます。
FpSpread1.Sheets[0].ColumnCount = 7;
FpSpread1.Sheets[0].PageSize = 50;
FpSpread1.Sheets[0].RowCount = 50;
FarPoint.Web.Spread.CurrencyCellType curr = new FarPoint.Web.Spread.CurrencyCellType("You must use numbers!!");
int i;
for (i = 0; i <=49; i++)
{
  FpSpread1.Sheets[0].Cells[i, 0].CellType = curr;
  FpSpread1.Sheets[0].Cells[i, 0].Value = 100 + i;
}
FpSpread1.Sheets(0).ColumnCount = 7
FpSpread1.Sheets(0).PageSize = 50
FpSpread1.Sheets(0).RowCount = 50
Dim curr As New FarPoint.Web.Spread.CurrencyCellType("You must use numbers!!")
Dim i As Integer
For i = 0 To 49
   FpSpread1.Sheets(0).Cells(i, 0).CellType = curr
   FpSpread1.Sheets(0).Cells(i, 0).Value = 100 + i
Next i
参照

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

 

 


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