Google Apps Script API
    Preparing search index...

    A row in a table. A row consists of a list of table cells. A row is identified by the row index.

    interface TableRow {
        getCell(cellIndex: number): GoogleAppsScript.Slides.TableCell;
        getIndex(): number;
        getMinimumHeight(): number;
        getNumCells(): number;
        getParentTable(): GoogleAppsScript.Slides.Table;
        remove(): void;
    }
    Index

    Methods