05-02-2011 08:29 AM
Hi,
I'm french then sorry for my bad english. The question is in the title.
I want to put in a cell some pictures (2 or 3) align on the left and after a text. Is it possible ?
It's to make a sort of tree.
Thanks.
Christophe.
05-02-2011 08:55 AM
I suppose you have already considered to use a real tree instead of a table? With the possibility to have columns and different data types in a tree, in some cases the tree could be used instead of a table control.
Given this, there is no way to mix picture and text or several pictures in a table cell: every cell can display only one image at a time, and even if it can hold several deta types in a single cell, it can only disply one of them at a time: in your case either picture or text.
If you cannot use a different type of control you could imagine to have a hidden canvas on which to draw all needed images and text, next retrieve a picture of the canvas as a bitmap and pass it to the table control. This effect implies a lot of coding so it may be advisable to consider reorganizing your user interface so that a different approach can be found.
05-02-2011 09:01 AM
Thanks for the answer.
The Tree is not really possible for this moment. And my table contains lot of data so I think it's too heavy to make a canvas for each row.
Thanks.