MESCIUS SPREAD for ASP.NET 10.0J
カレンダー型セル

カレンダー型セルは、AJAX ControlToolkit のCalendarコントロールの機能を実現します。

カレンダー型セル

このセル型の作成や設定は、DateCalendarCellType クラスを使用して行います。

AJAX ControlTookitを使用したセル型の設定方法や注意点については「AJAX Control Toolkitを使用したセル型」を参照してください。

カレンダー型セルは、ドロップダウン型のカレンダーを備える日付選択ボックスを提供します。

設定方法

  1. DateCalendarCellType クラスのインスタンスを作成して、カレンダー型セルを定義します。
  2. 必要なプロパティを設定します。
  3. このセル型をセルに割り当てます。

サンプルコード

次のサンプルコードは、カレンダー型セルの設定例です。

FarPoint.Web.Spread.Extender.DateCalendarCellType dc = new FarPoint.Web.Spread.Extender.DateCalendarCellType();
dc.Animated = true;
dc.DateFormat = "yyyy/MM/dd";
dc.ShowPopupButton = true;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dc;
Dim dc As New FarPoint.Web.Spread.Extender.DateCalendarCellType()
dc.Animated = True
dc.DateFormat = "yyyy/MM/dd"
dc.ShowPopupButton = True
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dc
関連トピック

 

 


© MESCIUS inc. All rights reserved.