你好,实现上述功能需要:继承对应单元格类型创建自定义单元格类型,重载Format() 方法,代码如下(以 DoubleCellType 演示):- [Serializable]
- public class UserDefinedCellType : FarPoint.Web.Spread.DoubleCellType
- {
- public override string Format(object obj)
- {
- string ret=obj.ToString();
- if (ret=="0")
- {
- return "";
- }
- else
- return base.Format(obj);
- }
- }
复制代码 |