I have a table in Microsoft Word. I need to merge two cells in a row of a table. I get the cells I need:
Wordprocessing.TableRow row = table.Elements<Wordprocessing.TableRow>().ElementAt(i);
Wordprocessing.TableCell cell1 = row.Elements<Wordprocessing.TableCell>().ElementAt(j);
Wordprocessing.TableCell cell2 = row.Elements<Wordprocessing.TableCell>().ElementAt(j+1);
How I can merge these cells horizontally?