Class: Google::Apis::DocsV1::TableCell
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::TableCell
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb 
Overview
The contents and style of a cell in a Table.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ Array<Google::Apis::DocsV1::StructuralElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The content of the cell.
 - 
  
    
      #end_index  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The zero-based end index of this cell, exclusive, in UTF-16 code units.
 - 
  
    
      #start_index  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The zero-based start index of this cell, in UTF-16 code units.
 - 
  
    
      #suggested_deletion_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested deletion IDs.
 - 
  
    
      #suggested_insertion_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested insertion IDs.
 - 
  
    
      #suggested_table_cell_style_changes  ⇒ Hash<String,Google::Apis::DocsV1::SuggestedTableCellStyle> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The suggested changes to the table cell style, keyed by suggestion ID.
 - 
  
    
      #table_cell_style  ⇒ Google::Apis::DocsV1::TableCellStyle 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The style of a TableCell.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TableCell 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TableCell.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TableCell
Returns a new instance of TableCell.
      5689 5690 5691  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5689 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ Array<Google::Apis::DocsV1::StructuralElement>
The content of the cell.
Corresponds to the JSON property content
      5654 5655 5656  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5654 def content @content end  | 
  
#end_index ⇒ Fixnum
The zero-based end index of this cell, exclusive, in UTF-16 code units.
Corresponds to the JSON property endIndex
      5659 5660 5661  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5659 def end_index @end_index end  | 
  
#start_index ⇒ Fixnum
The zero-based start index of this cell, in UTF-16 code units.
Corresponds to the JSON property startIndex
      5664 5665 5666  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5664 def start_index @start_index end  | 
  
#suggested_deletion_ids ⇒ Array<String>
The suggested deletion IDs. If empty, then there are no suggested deletions of
this content.
Corresponds to the JSON property suggestedDeletionIds
      5670 5671 5672  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5670 def suggested_deletion_ids @suggested_deletion_ids end  | 
  
#suggested_insertion_ids ⇒ Array<String>
The suggested insertion IDs. A TableCell may have multiple insertion IDs if it'
s a nested suggested change. If empty, then this is not a suggested insertion.
Corresponds to the JSON property suggestedInsertionIds
      5676 5677 5678  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5676 def suggested_insertion_ids @suggested_insertion_ids end  | 
  
#suggested_table_cell_style_changes ⇒ Hash<String,Google::Apis::DocsV1::SuggestedTableCellStyle>
The suggested changes to the table cell style, keyed by suggestion ID.
Corresponds to the JSON property suggestedTableCellStyleChanges
      5681 5682 5683  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5681 def suggested_table_cell_style_changes @suggested_table_cell_style_changes end  | 
  
#table_cell_style ⇒ Google::Apis::DocsV1::TableCellStyle
The style of a TableCell. Inherited table cell styles are represented as unset
fields in this message. A table cell style can inherit from the table's style.
Corresponds to the JSON property tableCellStyle
      5687 5688 5689  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5687 def table_cell_style @table_cell_style end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5694 5695 5696 5697 5698 5699 5700 5701 5702  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 5694 def update!(**args) @content = args[:content] if args.key?(:content) @end_index = args[:end_index] if args.key?(:end_index) @start_index = args[:start_index] if args.key?(:start_index) @suggested_deletion_ids = args[:suggested_deletion_ids] if args.key?(:suggested_deletion_ids) @suggested_insertion_ids = args[:suggested_insertion_ids] if args.key?(:suggested_insertion_ids) @suggested_table_cell_style_changes = args[:suggested_table_cell_style_changes] if args.key?(:suggested_table_cell_style_changes) @table_cell_style = args[:table_cell_style] if args.key?(:table_cell_style) end  |