Class: Google::Apis::SlidesV1::TableCellProperties

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 the TableCell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableCellProperties

Returns a new instance of TableCellProperties.



3951
3952
3953
# File 'lib/google/apis/slides_v1/classes.rb', line 3951

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

Instance Attribute Details

#content_alignmentString

The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Slides editor. Corresponds to the JSON property contentAlignment

Returns:

  • (String)


3944
3945
3946
# File 'lib/google/apis/slides_v1/classes.rb', line 3944

def content_alignment
  @content_alignment
end

#table_cell_background_fillGoogle::Apis::SlidesV1::TableCellBackgroundFill

The table cell background fill. Corresponds to the JSON property tableCellBackgroundFill



3949
3950
3951
# File 'lib/google/apis/slides_v1/classes.rb', line 3949

def table_cell_background_fill
  @table_cell_background_fill
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3956
3957
3958
3959
# File 'lib/google/apis/slides_v1/classes.rb', line 3956

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