class Google::Apis::SlidesV1::TableRow

Properties and contents of each row in a table.

Attributes

row_height[RW]

A magnitude in a single direction in the specified units. Corresponds to the JSON property `rowHeight` @return [Google::Apis::SlidesV1::Dimension]

table_cells[RW]

Properties and contents of each cell. Cells that span multiple columns are represented only once with a column_span greater than 1. As a result, the length of this collection does not always match the number of columns of the entire table. Corresponds to the JSON property `tableCells` @return [Array<Google::Apis::SlidesV1::TableCell>]

table_row_properties[RW]

Properties of each row in a table. Corresponds to the JSON property `tableRowProperties` @return [Google::Apis::SlidesV1::TableRowProperties]

Public Class Methods

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