找回密码
 立即注册

QQ登录

只需一步,快速开始

zwd121821810

注册会员

1

主题

1

帖子

7

积分

注册会员

积分
7
最新发帖
zwd121821810
注册会员   /  发表于:2018-2-26 14:09  /   查看:3870  /  回复:1
请教C#中流转换成图片后如何加载到单元格

1 个回复

倒序浏览
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2018-2-26 16:57:35
沙发
需要保存成文件,然后将图片路径给ImageCellType。或者将图片转换为base64的string
  1. FarPoint.Web.Spread.ImageCellType imagecell = new FarPoint.Web.Spread.ImageCellType();
  2. imagecell.ImageUrl = "img\\fplogo.jpg";
  3. imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right;
  4. imagecell.TextOnRight = true;
  5. imagecell.CssClass = "CssStyle1";
  6. FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部