class Google::Apis::DocsV1::InsertTableRequest
Inserts a table at the specified location. A newline character will be inserted before the inserted table.
Attributes
columns[RW]
The number of columns in the table. Corresponds to the JSON property `columns` @return [Fixnum]
end_of_segment_location[RW]
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` @return [Google::Apis::DocsV1::EndOfSegmentLocation]
location[RW]
A particular location in the document. Corresponds to the JSON property `location` @return [Google::Apis::DocsV1::Location]
rows[RW]
The number of rows in the table. Corresponds to the JSON property `rows` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 2265 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 2270 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