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
4952 4953 4954 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4952 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
4950 4951 4952 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4950 def table_column_properties @table_column_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4957 4958 4959 |
# File 'generated/google/apis/docs_v1/classes.rb', line 4957 def update!(**args) @table_column_properties = args[:table_column_properties] if args.key?(:table_column_properties) end |