I am getting the below exception while reading the merged cell.
"Cannot access individual rows in this collection because the table has vertically merged cells."
My code is,
foreach (Row aRow in doc.Tables[i].Rows)
{
foreach (Cell aCell in aRow.Cells)
{
MessageBox.Show(aCell.Range.Text);
}
}
// My table format is..
| R1C1 |R1C2|______|
| R2C1 |R2C2| R*C3 ..|
| R3C1 |R3C2|______|