Class: Google::Apis::SlidesV1::InsertTableColumnsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InsertTableColumnsRequest

Returns a new instance of InsertTableColumnsRequest.



1291
1292
1293
# File 'generated/google/apis/slides_v1/classes.rb', line 1291

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cell_locationGoogle::Apis::SlidesV1::TableCellLocation

A location of a single table cell within a table. Corresponds to the JSON property cellLocation



1272
1273
1274
# File 'generated/google/apis/slides_v1/classes.rb', line 1272

def cell_location
  @cell_location
end

#insert_rightBoolean Also known as: insert_right?

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

Returns:

  • (Boolean)


1278
1279
1280
# File 'generated/google/apis/slides_v1/classes.rb', line 1278

def insert_right
  @insert_right
end

#numberFixnum

The number of columns to be inserted. Maximum 20 per request. Corresponds to the JSON property number

Returns:

  • (Fixnum)


1284
1285
1286
# File 'generated/google/apis/slides_v1/classes.rb', line 1284

def number
  @number
end

#table_object_idString

The table to insert columns into. Corresponds to the JSON property tableObjectId

Returns:

  • (String)


1289
1290
1291
# File 'generated/google/apis/slides_v1/classes.rb', line 1289

def table_object_id
  @table_object_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1296
1297
1298
1299
1300
1301
# File 'generated/google/apis/slides_v1/classes.rb', line 1296

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