Class: Google::Apis::DocsV1::InsertTableColumnRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::InsertTableColumnRequest
 
 
- 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
Inserts an empty column into a table.
Instance Attribute Summary collapse
- 
  
    
      #insert_right  ⇒ Boolean 
    
    
      (also: #insert_right?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether to insert new column to the right of the reference cell location.
 - 
  
    
      #table_cell_location  ⇒ Google::Apis::DocsV1::TableCellLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Location of a single cell within a table.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InsertTableColumnRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InsertTableColumnRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InsertTableColumnRequest
Returns a new instance of InsertTableColumnRequest.
      2477 2478 2479  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2477 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#insert_right ⇒ Boolean Also known as: insert_right?
Whether to insert new column to the right of the reference cell location. - 
True: insert to the right. - False: insert to the left.
Corresponds to the JSON property insertRight
      2469 2470 2471  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2469 def insert_right @insert_right end  | 
  
#table_cell_location ⇒ Google::Apis::DocsV1::TableCellLocation
Location of a single cell within a table.
Corresponds to the JSON property tableCellLocation
      2475 2476 2477  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2475 def table_cell_location @table_cell_location end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2482 2483 2484 2485  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2482 def update!(**args) @insert_right = args[:insert_right] if args.key?(:insert_right) @table_cell_location = args[:table_cell_location] if args.key?(:table_cell_location) end  |