第二个问题:表头不能直接加CSS吗 ,这样的做法效率也太低了吧;
列样式不能再模板里面直接加CSS吗
victorysoft 发表于 2013-4-15 14:40:00
1表头目前无法加 CSS 样式。
2.列样式可以通过分别设置列的单元格类型来实现:
- FarPoint.Web.Spread.GeneralCellType gct = new FarPoint.Web.Spread.GeneralCellType();
-
- gct.CssClass = "styletest";
- this.FpSpread1.Sheets[0].Columns[0].CellType = gct;
- FarPoint.Web.Spread.GeneralCellType gct1 = new FarPoint.Web.Spread.GeneralCellType();
- gct1.CssClass = "styletest1";
- this.FpSpread1.Sheets[0].Columns[1].CellType = gct1;
- this.FpSpread1.Sheets[0].Save(this.Server.MapPath("template.xml"), false);
复制代码 |