Skip to content

Instantly share code, notes, and snippets.

@tanaikech
Last active October 31, 2021 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanaikech/659f3687f4ea5282f39ebf9b6d5ae54c to your computer and use it in GitHub Desktop.
Save tanaikech/659f3687f4ea5282f39ebf9b6d5ae54c to your computer and use it in GitHub Desktop.
Reducing Table Height of Table Inserted from Google Spreadsheet to Google Slides using Google Apps Script

Reducing Table Height of Table Inserted from Google Spreadsheet to Google Slides using Google Apps Script

This is a sample script for reducing the table height of the table inserted from Google Spreadsheet to Google Slides using Google Apps Script.

Sample script

Please copy and paste the following script to the script editor of Google Slides. This sample script uses Slides API. So, please enable Slides API at Advanced Google services. Ref

As the sample situation, this script supposes that a table is manually copied from Google Spreadsheet to the 1st slide of Google Slides. So when you test this script, please copy the cells from Google Spreadsheet to the 1st slide of Google Slides and run the function.

function myFunction() {
  const fontSize = 5; // pt
  const rowHeight = 10; // pt

  const s = SlidesApp.getActivePresentation();
  const slide = s.getSlides()[0];
  const table = slide.getTables()[0];
  for (let r = 0; r < table.getNumRows(); r++) {
    const row = table.getRow(r);
    for (let c = 0; c < row.getNumCells(); c++) {
      row.getCell(c).getText().getTextStyle().setFontSize(fontSize);
    }
  }
  Slides.Presentations.batchUpdate(
    {
      requests: [
        {
          updateTableRowProperties: {
            tableRowProperties: {
              minRowHeight: { magnitude: rowHeight, unit: "PT" },
            },
            objectId: table.getObjectId(),
            fields: "minRowHeight",
          },
        },
      ],
    },
    s.getId()
  );
}

Note

  • In the current stage, it seems that the minimum row height depends on the font size of the cell text.

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment