class Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
Attributes
column_index[RW]
The 0-based column index. Corresponds to the JSON property `columnIndex` @return [Fixnum]
row_index[RW]
The 0-based row index. Corresponds to the JSON property `rowIndex` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 3922 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 3927 def update!(**args) @column_index = args[:column_index] if args.key?(:column_index) @row_index = args[:row_index] if args.key?(:row_index) end