Link to home
Start Free TrialLog in
Avatar of foxvision
foxvision

asked on

Cell Split

Dear Experts,

I am using C# on Word Automation.

So I am trying to split a cell in a table with the following

object numRow = 2;
object numCol = 1;
Tables[1].Cell(1, 2).Split(ref numRow, ref numCol);

The table has 2 rows, so the above split the 2nd column of 1st row to have 2 rows in that cell.

After I have splitted them, How do I refer to the splitted cell anymore?

Many thanks!

ASKER CERTIFIED SOLUTION
Avatar of geneus
geneus
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial