找回密码
 立即注册

QQ登录

只需一步,快速开始

iceman
社区贡献组   /  发表于:2013-4-16 11:33:00
11#
第二个问题:表头不能直接加CSS吗 ,这样的做法效率也太低了吧;
列样式不能再模板里面直接加CSS吗
victorysoft 发表于 2013-4-15 14:40:00


1表头目前无法加 CSS 样式。
2.列样式可以通过分别设置列的单元格类型来实现:
  1. FarPoint.Web.Spread.GeneralCellType gct = new FarPoint.Web.Spread.GeneralCellType();
  2.             
  3.             gct.CssClass = "styletest";
  4.             this.FpSpread1.Sheets[0].Columns[0].CellType = gct;

  5.             FarPoint.Web.Spread.GeneralCellType gct1 = new FarPoint.Web.Spread.GeneralCellType();

  6.             gct1.CssClass = "styletest1";
  7.             this.FpSpread1.Sheets[0].Columns[1].CellType = gct1;

  8.             this.FpSpread1.Sheets[0].Save(this.Server.MapPath("template.xml"), false);
复制代码
回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 立即注册
返回顶部