npoi设置数据有效性
Posted guohu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npoi设置数据有效性相关的知识,希望对你有一定的参考价值。
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设置数据有效性的主要内容,如果未能解决你的问题,请参考以下文章