Class: Google::Apis::SlidesV1::TableCellLocation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

A location of a single table cell within a table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TableCellLocation

Returns a new instance of TableCellLocation



1249
1250
1251
# File 'generated/google/apis/slides_v1/classes.rb', line 1249

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#column_indexFixnum

The 0-based column index. Corresponds to the JSON property columnIndex

Returns:

  • (Fixnum)


1247
1248
1249
# File 'generated/google/apis/slides_v1/classes.rb', line 1247

def column_index
  @column_index
end

#row_indexFixnum

The 0-based row index. Corresponds to the JSON property rowIndex

Returns:

  • (Fixnum)


1242
1243
1244
# File 'generated/google/apis/slides_v1/classes.rb', line 1242

def row_index
  @row_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1254
1255
1256
1257
# File 'generated/google/apis/slides_v1/classes.rb', line 1254

def update!(**args)
  @row_index = args[:row_index] if args.key?(:row_index)
  @column_index = args[:column_index] if args.key?(:column_index)
end