class Google::Apis::SlidesV1::MergeTableCellsRequest

Merges cells in a Table.

Attributes

object_id_prop[RW]

The object ID of the table. Corresponds to the JSON property `objectId` @return [String]

table_range[RW]

A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with location = (0, 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ] Corresponds to the JSON property `tableRange` @return [Google::Apis::SlidesV1::TableRange]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 1800
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 1805
def update!(**args)
  @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
  @table_range = args[:table_range] if args.key?(:table_range)
end