Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InsertTableColumnRequest

import type { InsertTableColumnRequest } from "https://googleapis.deno.dev/v1/docs:v1.ts";

Inserts an empty column into a table.

interface InsertTableColumnRequest {
insertRight?: boolean;
tableCellLocation?: TableCellLocation;
}

§Properties

§
insertRight?: boolean
[src]

Whether to insert new column to the right of the reference cell location.

  • True: insert to the right. - False: insert to the left.
§
tableCellLocation?: TableCellLocation
[src]

The reference table cell location from which columns will be inserted. A new column will be inserted to the left (or right) of the column where the reference cell is. If the reference cell is a merged cell, a new column will be inserted to the left (or right) of the merged cell.