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

InsertTableRequest

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

Inserts a table at the specified location. A newline character will be inserted before the inserted table.

interface InsertTableRequest {
columns?: number;
endOfSegmentLocation?: EndOfSegmentLocation;
location?: Location;
rows?: number;
}

§Properties

§
columns?: number
[src]

The number of columns in the table.

§
endOfSegmentLocation?: EndOfSegmentLocation
[src]

Inserts the table at the end of the given header, footer or document body. A newline character will be inserted before the inserted table. Tables cannot be inserted inside a footnote.

§
location?: Location
[src]

Inserts the table at a specific model index. A newline character will be inserted before the inserted table, therefore the table start index will be at the specified location index + 1. The table must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between an existing table and its preceding paragraph). Tables cannot be inserted inside a footnote or equation.

§
rows?: number
[src]

The number of rows in the table.