good day,
i have read the online explanation of merging cells for slides but the api seems to work little differently.... :-(
i have created an arbitrary nxn table with existing merged cells as a template. i then load the slide and try to progmatically merge existing cells.
here are the things that i am running into:
1)merging cells the following way throws "can't merge exception":
"table.mergeCells(table.getCell(0,2),table.getCell(1,2));
table.mergeCells(table.getCell(0,2),table.getCell(2,2));"
the first two cells (x=0 and x=1) merges fine but the second pair throws an exception. but if i do:
"table.mergeCells(table.getCell(0,2),table.getCell(1,2));
table.mergeCells(table.getCell(0,2),table.getCell(1,2));"
it merges fine. but this is not consistant with the online document on how cells are renumbered.
2) next, row has 44 columns. i need to merge the first 10 cells together but after the 7th column merge it throws a "can't merge" exception. it also throws exception at other ith columns.
has anyone seen this problem/behavior? any work arounds?
thanks
joon