Spread 4.0版 单元格类型问题
请教各位大神,在Spread 4.0版中设置了单元格格式 如下:FarPoint.Web.Spread.DoubleCellType objNumCell = new FarPoint.Web.Spread.DoubleCellType();
objNumCell.DecimalDigits = 4;
objNumCell.FixedPoint = true;
如果要显示的数据不足4位小数会自动用0补齐,如:0.1230 请教各位大神如何设置才可以满足即使我不满足4位小数也不用0补齐?????
如:0.123显示结果是0.123而不是0.1230 您好,
非常抱歉,
DoubleCellType无法实现您想要的样式。 回复 2楼frank.zhang的帖子
请教!如何实现呢? 您好,
Spread暂时无法实现这个功能。 回复 1楼怕瓦落地的帖子
您可以尝试:
objNumCell.FixedPoint = false; 就不显示占位0。
该属性的详细描述为:
Gets or sets whether to display placeholder zeros in the decimal portion of the number for a fixed-point numeric display.
页:
[1]