Class: Google::Apis::SlidesV1::TableCellLocation
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::TableCellLocation
- 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
-
#column_index ⇒ Fixnum
The 0-based column index.
-
#row_index ⇒ Fixnum
The 0-based row index.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableCellLocation
constructor
A new instance of TableCellLocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableCellLocation
Returns a new instance of TableCellLocation
3907 3908 3909 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3907 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_index ⇒ Fixnum
The 0-based column index.
Corresponds to the JSON property columnIndex
3900 3901 3902 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3900 def column_index @column_index end |
#row_index ⇒ Fixnum
The 0-based row index.
Corresponds to the JSON property rowIndex
3905 3906 3907 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3905 def row_index @row_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3912 3913 3914 3915 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3912 def update!(**args) @column_index = args[:column_index] if args.key?(:column_index) @row_index = args[:row_index] if args.key?(:row_index) end |