Class: Google::Apis::DocsV1::TableCellLocation

Inherits:
Object
  • Object
show all
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

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



4571
4572
4573
# File 'generated/google/apis/docs_v1/classes.rb', line 4571

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

Instance Attribute Details

#column_indexFixnum

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

Returns:

  • (Fixnum)


4558
4559
4560
# File 'generated/google/apis/docs_v1/classes.rb', line 4558

def column_index
  @column_index
end

#row_indexFixnum

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

Returns:

  • (Fixnum)


4564
4565
4566
# File 'generated/google/apis/docs_v1/classes.rb', line 4564

def row_index
  @row_index
end

#table_start_locationGoogle::Apis::DocsV1::Location

A particular location in the document. Corresponds to the JSON property tableStartLocation



4569
4570
4571
# File 'generated/google/apis/docs_v1/classes.rb', line 4569

def table_start_location
  @table_start_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4576
4577
4578
4579
4580
# File 'generated/google/apis/docs_v1/classes.rb', line 4576

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