回复 1楼jly990216的帖子
你好,
可以通过 ImageCellType 通过添加背景图的方式来模拟这个功能,例如:
- FarPoint.Web.Spread.ImageCellType imagecell = new FarPoint.Web.Spread.ImageCellType();
- imagecell.ImageUrl = "img\\fplogo.jpg";
- FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
复制代码
谢谢 |
|