怎么设置图片正好填充整个图片
<style>.CssStyle1
{
FONT: 700 12pt verdana; COLOR: yellow
}
</style>
FarPoint.Web.Spread.ImageCellType imagecell = New FarPoint.Web.Spread.ImageCellType();
imagecell.ImageUrl = "img\\fplogo.jpg";
imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right;
imagecell.TextOnRight = true;
imagecell.CssClass = "CssStyle1";
FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
单元格大小有限 怎么设置图片正好为单元格大小填充进去 asp。net |
|