Class: Google::Apis::DocsV1::TableStyle
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::TableStyle
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/docs_v1/classes.rb,
generated/google/apis/docs_v1/representations.rb,
generated/google/apis/docs_v1/representations.rb
Overview
Styles that apply to a table.
Instance Attribute Summary collapse
-
#table_column_properties ⇒ Array<Google::Apis::DocsV1::TableColumnProperties>
The properties of each column.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableStyle
constructor
A new instance of TableStyle.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableStyle
Returns a new instance of TableStyle.
5786 5787 5788 |
# File 'generated/google/apis/docs_v1/classes.rb', line 5786 def initialize(**args) update!(**args) end |
Instance Attribute Details
#table_column_properties ⇒ Array<Google::Apis::DocsV1::TableColumnProperties>
The properties of each column.
Note that in Docs, tables contain rows and rows contain cells, similar to
HTML. So the properties for a row can be found on the row's
table_row_style.
Corresponds to the JSON property tableColumnProperties
5784 5785 5786 |
# File 'generated/google/apis/docs_v1/classes.rb', line 5784 def table_column_properties @table_column_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5791 5792 5793 |
# File 'generated/google/apis/docs_v1/classes.rb', line 5791 def update!(**args) @table_column_properties = args[:table_column_properties] if args.key?(:table_column_properties) end |