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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ TableCellLocation

Returns a new instance of TableCellLocation.



3982
3983
3984
# File 'lib/google/apis/slides_v1/classes.rb', line 3982

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

Instance Attribute Details

#column_indexFixnum

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

Returns:

  • (Fixnum)


3975
3976
3977
# File 'lib/google/apis/slides_v1/classes.rb', line 3975

def column_index
  @column_index
end

#row_indexFixnum

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

Returns:

  • (Fixnum)


3980
3981
3982
# File 'lib/google/apis/slides_v1/classes.rb', line 3980

def row_index
  @row_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3987
3988
3989
3990
# File 'lib/google/apis/slides_v1/classes.rb', line 3987

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