Class: Google::Apis::DocsV1::TableCellLocation
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::TableCellLocation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/docs_v1/classes.rb,
generated/google/apis/docs_v1/representations.rb,
generated/google/apis/docs_v1/representations.rb
Overview
Location of a single cell within a table.
Instance Attribute Summary collapse
-
#column_index ⇒ Fixnum
The zero-based column index.
-
#row_index ⇒ Fixnum
The zero-based row index.
-
#table_start_location ⇒ Google::Apis::DocsV1::Location
A particular location in the document.
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.
4970 4971 4972 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4970 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_index ⇒ Fixnum
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
4957 4958 4959 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4957 def column_index @column_index end |
#row_index ⇒ Fixnum
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
4963 4964 4965 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4963 def row_index @row_index end |
#table_start_location ⇒ Google::Apis::DocsV1::Location
A particular location in the document.
Corresponds to the JSON property tableStartLocation
4968 4969 4970 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4968 def table_start_location @table_start_location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4975 4976 4977 4978 4979 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4975 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 |