PowerTools SPREAD for ASP.NET 8.0J > 開発者の手引き > セル型 > AJAX Control Toolkitを使用したセル型 > カレンダー型セル |
カレンダー型セルは、AJAX ControlToolkit のCalendarコントロールの機能を実現します。
このセル型の作成や設定は、DateCalendarCellType クラスを使用して行います。
AJAX ControlTookitを使用したセル型の設定方法や注意点については「AJAX Control Toolkitを使用したセル型」を参照してください。 |
カレンダー型セルは、ドロップダウン型のカレンダーを備える日付選択ボックスを提供します。
次のサンプルコードは、カレンダー型セルの設定例です。
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