Class: Google::Apis::SlidesV1::TableBorderProperties
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::TableBorderProperties
- 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
-
#dash_style ⇒ String
The dash style of the border.
-
#table_border_fill ⇒ Google::Apis::SlidesV1::TableBorderFill
The fill of the border.
-
#weight ⇒ Google::Apis::SlidesV1::Dimension
A magnitude in a single direction in the specified units.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableBorderProperties
constructor
A new instance of TableBorderProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableBorderProperties
Returns a new instance of TableBorderProperties
3777 3778 3779 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3777 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dash_style ⇒ String
The dash style of the border.
Corresponds to the JSON property dashStyle
3765 3766 3767 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3765 def dash_style @dash_style end |
#table_border_fill ⇒ Google::Apis::SlidesV1::TableBorderFill
The fill of the border.
Corresponds to the JSON property tableBorderFill
3770 3771 3772 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3770 def table_border_fill @table_border_fill end |
#weight ⇒ Google::Apis::SlidesV1::Dimension
A magnitude in a single direction in the specified units.
Corresponds to the JSON property weight
3775 3776 3777 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3775 def weight @weight end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3782 3783 3784 3785 3786 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3782 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 |