class Google::Apis::DocsV1::TableCellLocation
Location
of a single cell within a table.
Attributes
column_index[RW]
The zero-based column index. For example, the second column in the table has a column index of 1. Corresponds to the JSON property `columnIndex` @return [Fixnum]
row_index[RW]
The zero-based row index. For example, the second row in the table has a row index of 1. Corresponds to the JSON property `rowIndex` @return [Fixnum]
table_start_location[RW]
A particular location in the document. Corresponds to the JSON property `tableStartLocation` @return [Google::Apis::DocsV1::Location]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 5295 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 5300 def update!(**args) @column_index = args[:column_index] if args.key?(:column_index) @row_index = args[:row_index] if args.key?(:row_index) @table_start_location = args[:table_start_location] if args.key?(:table_start_location) end