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

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

Overview

Location of a single cell within a table.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableCellLocation

Returns a new instance of TableCellLocation.



6114
6115
6116
# File 'lib/google/apis/docs_v1/classes.rb', line 6114

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)


6101
6102
6103
# File 'lib/google/apis/docs_v1/classes.rb', line 6101

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)


6107
6108
6109
# File 'lib/google/apis/docs_v1/classes.rb', line 6107

def row_index
  @row_index
end

#table_start_locationGoogle::Apis::DocsV1::Location

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



6112
6113
6114
# File 'lib/google/apis/docs_v1/classes.rb', line 6112

def table_start_location
  @table_start_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6119
6120
6121
6122
6123
# File 'lib/google/apis/docs_v1/classes.rb', line 6119

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