Class: Google::Apis::SlidesV1::TableBorderCell

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

The properties of each border cell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableBorderCell

Returns a new instance of TableBorderCell.



3810
3811
3812
# File 'lib/google/apis/slides_v1/classes.rb', line 3810

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

Instance Attribute Details

#locationGoogle::Apis::SlidesV1::TableCellLocation

A location of a single table cell within a table. Corresponds to the JSON property location



3803
3804
3805
# File 'lib/google/apis/slides_v1/classes.rb', line 3803

def location
  @location
end

#table_border_propertiesGoogle::Apis::SlidesV1::TableBorderProperties

The border styling properties of the TableBorderCell. Corresponds to the JSON property tableBorderProperties



3808
3809
3810
# File 'lib/google/apis/slides_v1/classes.rb', line 3808

def table_border_properties
  @table_border_properties
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3815
3816
3817
3818
# File 'lib/google/apis/slides_v1/classes.rb', line 3815

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