Class: Google::Apis::DocsV1::InsertTableRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::InsertTableRequest
 
 
- 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 a table at the specified location. A newline character will be inserted before the inserted table.
Instance Attribute Summary collapse
- 
  
    
      #columns  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of columns in the table.
 - 
  
    
      #end_of_segment_location  ⇒ Google::Apis::DocsV1::EndOfSegmentLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Location at the end of a body, header, footer or footnote.
 - 
  
    
      #location  ⇒ Google::Apis::DocsV1::Location 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A particular location in the document.
 - 
  
    
      #rows  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of rows in the table.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InsertTableRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InsertTableRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InsertTableRequest
Returns a new instance of InsertTableRequest.
      2514 2515 2516  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2514 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#columns ⇒ Fixnum
The number of columns in the table.
Corresponds to the JSON property columns
      2496 2497 2498  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2496 def columns @columns end  | 
  
#end_of_segment_location ⇒ Google::Apis::DocsV1::EndOfSegmentLocation
Location at the end of a body, header, footer or footnote. The location is
immediately before the last newline in the document segment.
Corresponds to the JSON property endOfSegmentLocation
      2502 2503 2504  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2502 def end_of_segment_location @end_of_segment_location end  | 
  
#location ⇒ Google::Apis::DocsV1::Location
A particular location in the document.
Corresponds to the JSON property location
      2507 2508 2509  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2507 def location @location end  | 
  
#rows ⇒ Fixnum
The number of rows in the table.
Corresponds to the JSON property rows
      2512 2513 2514  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2512 def rows @rows end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2519 2520 2521 2522 2523 2524  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 2519 def update!(**args) @columns = args[:columns] if args.key?(:columns) @end_of_segment_location = args[:end_of_segment_location] if args.key?(:end_of_segment_location) @location = args[:location] if args.key?(:location) @rows = args[:rows] if args.key?(:rows) end  |