Class: Google::Apis::SlidesV1::TableBorderProperties

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

Overview

The border styling properties of the TableBorderCell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TableBorderProperties

Returns a new instance of TableBorderProperties.



3728
3729
3730
# File 'generated/google/apis/slides_v1/classes.rb', line 3728

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

Instance Attribute Details

#dash_styleString

The dash style of the border. Corresponds to the JSON property dashStyle

Returns:

  • (String)


3716
3717
3718
# File 'generated/google/apis/slides_v1/classes.rb', line 3716

def dash_style
  @dash_style
end

#table_border_fillGoogle::Apis::SlidesV1::TableBorderFill

The fill of the border. Corresponds to the JSON property tableBorderFill



3721
3722
3723
# File 'generated/google/apis/slides_v1/classes.rb', line 3721

def table_border_fill
  @table_border_fill
end

#weightGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property weight



3726
3727
3728
# File 'generated/google/apis/slides_v1/classes.rb', line 3726

def weight
  @weight
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3733
3734
3735
3736
3737
# File 'generated/google/apis/slides_v1/classes.rb', line 3733

def update!(**args)
  @dash_style = args[:dash_style] if args.key?(:dash_style)
  @table_border_fill = args[:table_border_fill] if args.key?(:table_border_fill)
  @weight = args[:weight] if args.key?(:weight)
end