ImageCellType imCell = new ImageCellType()
{
ImageUrl = "~/images/logo.png",
CssClass = "myimage"
};
FpSpread1.Cells[0, 1].CellType = imCell;
Dim imCell As New ImageCellType() With {
.ImageUrl = "~/images/logo.png",
.CssClass = "myimage"
}
FpSpread1.Cells(0, 1).CellType = imCell