class Google::Apis::SlidesV1::InsertTableColumnsRequest
Inserts columns into a table. Other columns in the table will be resized to fit the new column.
Attributes
A location of a single table cell within a table. Corresponds to the JSON property `cellLocation` @return [Google::Apis::SlidesV1::TableCellLocation]
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]
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]
The number of columns to be inserted. Maximum 20 per request. Corresponds to the JSON property `number` @return [Fixnum]
The table to insert columns into. Corresponds to the JSON property `tableObjectId` @return [String]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 1345 def initialize(**args) update!(**args) end
Public Instance Methods
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