码迷,mamicode.com
首页 > 其他好文 > 详细

npoi设置数据有效性

时间:2018-09-13 14:06:50      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:sheet   created   ssl   date   address   first   erro   oid   sha   

npoi设置数据有效性

    public void SetDataValidate(ISheet sheet, int firstCol, int lastCol)
    {
        CellRangeAddressList regions = new CellRangeAddressList(1, 65535, firstCol, lastCol);
        DVConstraint constraint = DVConstraint.CreateDateConstraint(
            (int)ComparisonOperator.Between, "1900-01-01", "2999-12-31", "yyyy-MM-dd");
        HSSFDataValidation dataValidate = new HSSFDataValidation(regions, constraint);
dataValidate.EmptyCellAllowed = false; dataValidate.CreateErrorBox("错误提示", "请输入日期‘yyyy年MM月dd日‘"); sheet.AddValidationData(dataValidate); }

  

  

npoi设置数据有效性

标签:sheet   created   ssl   date   address   first   erro   oid   sha   

原文地址:https://www.cnblogs.com/guohu/p/9639631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!