'Usage Dim min As Date Dim max As Date Dim instance As New DateTimeCellType(min, max)
Parameters
- min
- Minimum value (earliest date and time)
- max
- Maximum value (latest date and time)
'Usage Dim min As Date Dim max As Date Dim instance As New DateTimeCellType(min, max)
DateTime min = new DateTime(2000, 1, 1); DateTime max = new DateTime(2010, 12, 31); FarPoint.Web.Spread.DateTimeCellType dt = new FarPoint.Web.Spread.DateTimeCellType(min, max); FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dt;
Dim min As New DateTime(2000, 1, 1) Dim max As New DateTime(2010, 12, 31) Dim dt As New FarPoint.Web.Spread.DateTimeCellType(min, max) FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dt