class Google::Apis::SlidesV1::InsertTableColumnsRequest

Inserts columns into a table. Other columns in the table will be resized to fit the new column.

Attributes

cell_location[RW]

A location of a single table cell within a table. Corresponds to the JSON property `cellLocation` @return [Google::Apis::SlidesV1::TableCellLocation]

insert_right[RW]

Whether to insert new columns to the right of the reference cell location. - ` True`: insert to the right. - `False`: insert to the left. Corresponds to the JSON property `insertRight` @return [Boolean]

insert_right?[RW]

Whether to insert new columns to the right of the reference cell location. - ` True`: insert to the right. - `False`: insert to the left. Corresponds to the JSON property `insertRight` @return [Boolean]

number[RW]

The number of columns to be inserted. Maximum 20 per request. Corresponds to the JSON property `number` @return [Fixnum]

table_object_id[RW]

The table to insert columns into. Corresponds to the JSON property `tableObjectId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 1350
def update!(**args)
  @cell_location = args[:cell_location] if args.key?(:cell_location)
  @insert_right = args[:insert_right] if args.key?(:insert_right)
  @number = args[:number] if args.key?(:number)
  @table_object_id = args[:table_object_id] if args.key?(:table_object_id)
end