1金币
本帖最后由 yzs5661 于 2020-4-26 14:03 编辑
1.在单元格生成签名图片后,如果打开则签名图片和单元格不瑞绑定,也就是可以移出单格。
2.已有图片保存后,图片变小
在单元格写图片代码:
FarPoint.Win.Spread.CellType.ImageCellType imgct = new FarPoint.Win.Spread.CellType.ImageCellType();
imgct.Style = FarPoint.Win.RenderStyle.Normal;
sheet.Cells[formula].Text = "";
sheet.Cells[formula].CellType = imgct;
sheet.Cells[formula].Value = image;
|
|