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

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

パラメータ

errorMessage
入力値が有効でない場合に表示するメッセージ(文字列)
以下の例では、無効なデータに対して表示するメッセージとカスタム日付書式を指定して、日付型セルを作成します。日付書式は、指定した日付の曜日、コンマ(,)、月日の順に表示します。列幅を設定し、すべてのテキストを表示させます。
Dim datecell As New FarPoint.Web.Spread.DateTimeCellType("Need a date!!")
datecell.FormatString = "d"
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
FpSpread1.Sheets(0).Cells(0, 0).Value = System.DateTime.Now.ToOADate()
FpSpread1.Sheets(0).Columns(0).Width = 175
FarPoint.Web.Spread.DateTimeCellType datecell = new FarPoint.Web.Spread.DateTimeCellType("Need a date!!");
datecell.FormatString = "d";
FpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
FpSpread1.Sheets[0].Cells[0, 0].Value = System.DateTime.Now.ToOADate();
FpSpread1.Sheets[0].Columns[0].Width = 175;
参照

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

 

 


© MESCIUS inc. All rights reserved.