Class: Google::Apis::SlidesV1::TableCell
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SlidesV1::TableCell
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/slides_v1/classes.rb,
 generated/google/apis/slides_v1/representations.rb,
 generated/google/apis/slides_v1/representations.rb
Overview
Properties and contents of each table cell.
Instance Attribute Summary collapse
- 
  
    
      #column_span  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Column span of the cell. 
- 
  
    
      #location  ⇒ Google::Apis::SlidesV1::TableCellLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A location of a single table cell within a table. 
- 
  
    
      #row_span  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Row span of the cell. 
- 
  
    
      #table_cell_properties  ⇒ Google::Apis::SlidesV1::TableCellProperties 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The properties of the TableCell. 
- 
  
    
      #text  ⇒ Google::Apis::SlidesV1::TextContent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The general text content. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TableCell 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TableCell. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableCell
Returns a new instance of TableCell
| 3839 3840 3841 | # File 'generated/google/apis/slides_v1/classes.rb', line 3839 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#column_span ⇒ Fixnum
Column span of the cell.
Corresponds to the JSON property columnSpan
| 3816 3817 3818 | # File 'generated/google/apis/slides_v1/classes.rb', line 3816 def column_span @column_span end | 
#location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
Corresponds to the JSON property location
| 3821 3822 3823 | # File 'generated/google/apis/slides_v1/classes.rb', line 3821 def location @location end | 
#row_span ⇒ Fixnum
Row span of the cell.
Corresponds to the JSON property rowSpan
| 3826 3827 3828 | # File 'generated/google/apis/slides_v1/classes.rb', line 3826 def row_span @row_span end | 
#table_cell_properties ⇒ Google::Apis::SlidesV1::TableCellProperties
The properties of the TableCell.
Corresponds to the JSON property tableCellProperties
| 3831 3832 3833 | # File 'generated/google/apis/slides_v1/classes.rb', line 3831 def table_cell_properties @table_cell_properties end | 
#text ⇒ Google::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
| 3837 3838 3839 | # File 'generated/google/apis/slides_v1/classes.rb', line 3837 def text @text end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3844 3845 3846 3847 3848 3849 3850 | # File 'generated/google/apis/slides_v1/classes.rb', line 3844 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 |