class Google::Apis::DocsV1::TableRange
A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]
Attributes
The column span of the table range. Corresponds to the JSON property `columnSpan` @return [Fixnum]
The row span of the table range. Corresponds to the JSON property `rowSpan` @return [Fixnum]
Location
of a single cell within a table. Corresponds to the JSON property `tableCellLocation` @return [Google::Apis::DocsV1::TableCellLocation]
Public Class Methods
# File lib/google/apis/docs_v1/classes.rb, line 5580 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/docs_v1/classes.rb, line 5585 def update!(**args) @column_span = args[:column_span] if args.key?(:column_span) @row_span = args[:row_span] if args.key?(:row_span) @table_cell_location = args[:table_cell_location] if args.key?(:table_cell_location) end