Class: Google::Apis::SlidesV1::TableCell

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

Properties and contents of each table cell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableCell

Returns a new instance of TableCell.



3857
3858
3859
# File 'lib/google/apis/slides_v1/classes.rb', line 3857

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

Instance Attribute Details

#column_spanFixnum

Column span of the cell. Corresponds to the JSON property columnSpan

Returns:

  • (Fixnum)


3834
3835
3836
# File 'lib/google/apis/slides_v1/classes.rb', line 3834

def column_span
  @column_span
end

#locationGoogle::Apis::SlidesV1::TableCellLocation

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



3839
3840
3841
# File 'lib/google/apis/slides_v1/classes.rb', line 3839

def location
  @location
end

#row_spanFixnum

Row span of the cell. Corresponds to the JSON property rowSpan

Returns:

  • (Fixnum)


3844
3845
3846
# File 'lib/google/apis/slides_v1/classes.rb', line 3844

def row_span
  @row_span
end

#table_cell_propertiesGoogle::Apis::SlidesV1::TableCellProperties

The properties of the TableCell. Corresponds to the JSON property tableCellProperties



3849
3850
3851
# File 'lib/google/apis/slides_v1/classes.rb', line 3849

def table_cell_properties
  @table_cell_properties
end

#textGoogle::Apis::SlidesV1::TextContent

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



3855
3856
3857
# File 'lib/google/apis/slides_v1/classes.rb', line 3855

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3862
3863
3864
3865
3866
3867
3868
# File 'lib/google/apis/slides_v1/classes.rb', line 3862

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