class Google::Apis::DocsV1::InsertTableRowRequest

Inserts an empty row into a table.

Attributes

insert_below[RW]

Whether to insert new row below the reference cell location. - `True`: insert below the cell. - `False`: insert above the cell. Corresponds to the JSON property `insertBelow` @return [Boolean]

insert_below?[RW]

Whether to insert new row below the reference cell location. - `True`: insert below the cell. - `False`: insert above the cell. Corresponds to the JSON property `insertBelow` @return [Boolean]

table_cell_location[RW]

Location of a single cell within a table. Corresponds to the JSON property `tableCellLocation` @return [Google::Apis::DocsV1::TableCellLocation]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 2294
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/docs_v1/classes.rb, line 2299
def update!(**args)
  @insert_below = args[:insert_below] if args.key?(:insert_below)
  @table_cell_location = args[:table_cell_location] if args.key?(:table_cell_location)
end