问题描述
1,FarPoint.Web.Spread.RegExpCellType rect = new FarPoint.Web.Spread.RegExpCellType();
rect.ErrorMessage = "请输入规范数据!(例:12.34)";
rect.ValidationExpression = @"^-?(0\.\d{2}|[1-9]\d*\.\d{2})$";
cell .CellType =rect ;
我设置了单元格格式为正则表达式类型,输入是没有问题的
2,输出的问题,当把一个单元格的Text设置为一个从数据库中读出的decimal值时,将显示4为小数,和我们想要的不一致,能设置输出的格式吗?
求助 |
|