- <style>
- .CssStyle1 {
- FONT: 700 12pt verdana;
- COLOR: yellow
- }
- .CssStyle1 img{
- width: 100%;
- }
- </style>
复制代码
- FarPoint.Web.Spread.ImageCellType imagecell = new FarPoint.Web.Spread.ImageCellType();
- imagecell.ImageUrl = "aaa.png";
- imagecell.ImageAlign = System.Web.UI.WebControls.ImageAlign.Right;
- imagecell.TextOnRight = true;
- imagecell.CssClass = "CssStyle1";
- FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
复制代码
没有直接属性设置,可以用css修改部分属性。 |