delPiero
2015-06-17T00:46:01Z
Hello,
is it possible to load images inside cells?
I am looking for something like this

20110425_listview.png

Click to View Image179 View(s)

Igor/10Tec
2015-06-17T06:54:47Z
Yes, sure. The ImageIndex property of the iGrid cell class (iGCell) is used for this purpose.

Do you have a specific requirement?

In the worst case, you can also use custom drawing to load/draw images dynamically in iGrid cells. See the CustomDrawCellForeground event of iGrid.
delPiero
2015-06-17T15:04:33Z
would you mind showing me a sample on how to accomplish this?
Igor/10Tec
2015-06-18T07:00:41Z
Below is an example from the help file. It demonstrates how to display the first image from the image list imageList1 in an iGrid cell:

iGrid1.ImageList = imageList1;
iGrid1.Cells[myRowIndex, myColIndex].ImageIndex = 0;

Attached is a picture that can help you to find this info in the electronic documentation.
Igor/10Tec attached the following image(s):