Hi,
Thanks for you replay.
But you don't seem to see what is my problem.
Suppose i want to create the xls with this format:
<table border="1">
<tr>
<td width="100px">Text 1 </td>
<td width="100px">Text 2 </td>
<td width="100px"></td>
<tr>
<tr>
<td width="100px">-</td>
<td width="100px"></td>
<td width="100px"></td>
<tr>
<tr>
<td colspan="2" width="200px" height="200px">Image (600x300)</td>
<td width="100px">Text 3 </td>
<tr>
<tr>
<td width="100px">Text 4 </td>
<td width="100px"></td>
<td width="100px"></td>
<tr>
</table>
Using the API i know the columns for adding Text 1, Text 2, Text 3 and the Image.
But, when I try to add:
Text 3 - don't know wich column should I address (row is the same given for the image)
Text 4 - don't know wich row should I address (column is the same given for the image)
What I need is a way to convert (width, height) to (#columns, #rows).
Thanks