class Google::Apis::SlidesV1::TableCell

Properties and contents of each table cell.

Attributes

column_span[RW]

Column span of the cell. Corresponds to the JSON property `columnSpan` @return [Fixnum]

location[RW]

A location of a single table cell within a table. Corresponds to the JSON property `location` @return [Google::Apis::SlidesV1::TableCellLocation]

row_span[RW]

Row span of the cell. Corresponds to the JSON property `rowSpan` @return [Fixnum]

table_cell_properties[RW]

The properties of the TableCell. Corresponds to the JSON property `tableCellProperties` @return [Google::Apis::SlidesV1::TableCellProperties]

text[RW]

The general text content. The text must reside in a compatible shape (e.g. text box or rectangle) or a table cell in a page. Corresponds to the JSON property `text` @return [Google::Apis::SlidesV1::TextContent]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 3863
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 3868
def update!(**args)
  @column_span = args[:column_span] if args.key?(:column_span)
  @location = args[:location] if args.key?(:location)
  @row_span = args[:row_span] if args.key?(:row_span)
  @table_cell_properties = args[:table_cell_properties] if args.key?(:table_cell_properties)
  @text = args[:text] if args.key?(:text)
end