class Google::Apis::DocsV1::InsertTableColumnRequest
Inserts an empty column into a table.
Attributes
insert_right[RW]
Whether to insert new column 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 column 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]
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 2228 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 2233 def update!(**args) @insert_right = args[:insert_right] if args.key?(:insert_right) @table_cell_location = args[:table_cell_location] if args.key?(:table_cell_location) end