Google Apps Script API
    Preparing search index...

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

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

    Methods