找回密码
 立即注册

QQ登录

只需一步,快速开始

iceman

社区贡献组

270

主题

1万

帖子

1万

积分

社区贡献组

积分
19311

活字格认证微信认证勋章元老葡萄

请教一个问题,数据验证怎么做呢?比如是日期类型的,我是希望在spread加个日期选择类型,这样方便客户操作。。。

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-9-23 14:01:00
沙发
回复 1楼iceman的帖子

可以通过设置 DateTimeCellType 来实现日期类型的验证:

  1.             FarPoint.Web.Spread.DateTimeCellType dt = new FarPoint.Web.Spread.DateTimeCellType();
  2.             System.Globalization.DateTimeFormatInfo dtf = new System.Globalization.DateTimeFormatInfo();
  3.             dtf.LongDatePattern = "D";
  4.             dtf.ShortDatePattern = "M/d/yyyy";
  5.             dt.DateTimeFormat = dtf;
  6.             dt.MaximumValue = new DateTime(2020, 12, 31);
  7.             dt.MinimumValue = new DateTime(1950, 1, 1);
  8.             FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dt;
  9.             FpSpread1.ActiveSheetView.Cells[0, 0].Value = DateTime.Now;
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部