getting an error “cannot assign void to implicitly type variable”
IWorksheet TestActiveSheet = fpSpread1.AsWorkbook().ActiveSheet;
var image = TestActiveSheet.Cells[“A2″].InsertPictureInCell(@”D:TmpImage.png”);
image.Sizing = SizingMode.Custom;
image.Width = 50;
image.Height = 20;
TestActiveSheet.Rows[“1:2”].RowHeight = 60;