找回密码
 立即注册

QQ登录

只需一步,快速开始

ahljxwy

银牌会员

27

主题

67

帖子

3969

积分

银牌会员

积分
3969

活字格认证

ahljxwy
银牌会员   /  发表于:2012-10-16 16:45  /   查看:5269  /  回复:2
请问怎样设置数字列的小数位数?多谢!!!!

2 个回复

倒序浏览
ahljxwy
银牌会员   /  发表于:2012-10-16 16:48:00
沙发
我用的是spread for asp.net 4
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-10-17 16:37:00
板凳
回复 2楼ahljxwy的帖子

可以通过以下代码测试:

  1. FarPoint.Web.Spread.DoubleCellType dblc = new FarPoint.Web.Spread.DoubleCellType();
  2. dblc.DecimalDigits = 3;
  3. dblc.FixedPoint = True;
  4. FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dblc;
  5. FpSpread1.ActiveSheetView.Cells[0, 0].Value = 435.98745;
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部