Class: Google::Apis::DocsV1::TableColumnProperties
- Inherits:
-
Object
- Object
- Google::Apis::DocsV1::TableColumnProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb
Overview
The properties of a column in a table.
Instance Attribute Summary collapse
-
#width ⇒ Google::Apis::DocsV1::Dimension
A magnitude in a single direction in the specified units.
-
#width_type ⇒ String
The width type of the column.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableColumnProperties
constructor
A new instance of TableColumnProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TableColumnProperties
Returns a new instance of TableColumnProperties.
5984 5985 5986 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#width ⇒ Google::Apis::DocsV1::Dimension
A magnitude in a single direction in the specified units.
Corresponds to the JSON property width
5977 5978 5979 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5977 def width @width end |
#width_type ⇒ String
The width type of the column.
Corresponds to the JSON property widthType
5982 5983 5984 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5982 def width_type @width_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5989 5990 5991 5992 |
# File 'lib/google/apis/docs_v1/classes.rb', line 5989 def update!(**args) @width = args[:width] if args.key?(:width) @width_type = args[:width_type] if args.key?(:width_type) end |