I tried to merge the 2 table cells in Google Slide, It's throwing the Error of TypeError: Cannot find function merge in object TableCell. (line 47, file "Tester")
My sample function is:
function googleSlideCellsMerge(){
var table=SlidesApp.getActivePresentation().getSlides()[0].getTables()[0];
var row = table.getRow(1);
var cell1 = row.getCell(0);
var cell2 = row.getCell(1);
var mergeCell = cell2.merge();
Logger.log(mergeCell);
}
In the above example, I tried to merge the 2 cells of Row 1.
I think the above code works with the Google Docs, but It's not for me with Google Slide.

