Use the RowIndex property and a simple algorithm.

M

Mark Baird

There is not property but...

Using the RowIndex property and an algorithm you should be
able to determine the row span. You need to first get the
total number of rows in the table.

Row Index
Row of the Cell
1 1 2-1=1
2 2 4-2=2
3
4 4 5-4=1
5 5 8-5=3
6
7
8 8

-----------------------------------
| 1 | | |
-----------------------------------
| 2 | | |
------- -------------------
| | | |
-----------------------------------
| 4 | | |
-----------------------------------
| 5 | | |
------- -------------------
| | | |
------- -------------------
| | | |
 
Top