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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/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.



1345
1346
1347
# File 'lib/google/apis/slides_v1/classes.rb', line 1345

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



1326
1327
1328
# File 'lib/google/apis/slides_v1/classes.rb', line 1326

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)


1332
1333
1334
# File 'lib/google/apis/slides_v1/classes.rb', line 1332

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)


1338
1339
1340
# File 'lib/google/apis/slides_v1/classes.rb', line 1338

def number
  @number
end

#table_object_idString

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

Returns:

  • (String)


1343
1344
1345
# File 'lib/google/apis/slides_v1/classes.rb', line 1343

def table_object_id
  @table_object_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1350
1351
1352
1353
1354
1355
# 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