Google Apps Scriptで、Google Slidesに配置されている表のセルを結合したくて書いたコードです。
I wrote Google Apps Script to merge cells in a table placed on Google Slides.
今回の例では、4行3列の表で、3列目を結合します。
In this example, I will merge the third column of a 4-row, 3-column table.
画面上では、結合したいセルを選択して右クリックして「セルを結合」を選択すると実現できますが、今回はこれをコードで試します。
Although you can achieve this manually by selecting the cells you want to merge, right-clicking, and choosing "Merge cells," this time I will try to do it using Apps Script.
Code.gs
function runMergeTableCells() {
var slide = SlidesApp.getActivePresentation();
var table = slide.getSlides()[0].getTables()[0];
var resource = {
requests:[
{
mergeTableCells: {
objectId: table.getObjectId(),
tableRange: {
location: {
rowIndex: 0,
columnIndex: 2
},
rowSpan: 4,
columnSpan: 1
}
}
}
]
};
Slides.Presentations.batchUpdate(resource, slide.getId());
}
Tips
SlidesAppだけでは実現できないようなので、Google Slides APIを利用しました。
Since it seems impossible to achieve this with SlidesApp alone, I utilized the Google Slides API.
GeminiもChatGPTもGoogle Slides APIを利用するコードを提案してくれました。
Both Gemini and ChatGPT suggested using the Google Slides API to write the code.
Google Slides APIを利用するにはサービスの+ボタンから追加します。
To use the Google Slides API, we need to add it from the "+" button in the Services section.
サービス > Google Slides API > 追加
Google Slides API > REST Resource: presentations
Method: presentations.batchUpdate
How to Merge 2 Table cells in 'Google Slide' using Google Apps Script