Class: Google::Apis::SheetsV4::TextRotation
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::TextRotation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
The rotation applied to text in a cell.
Instance Attribute Summary collapse
-
#angle ⇒ Fixnum
The angle between the standard orientation and the desired orientation.
-
#vertical ⇒ Boolean
(also: #vertical?)
If true, text reads top to bottom, but the orientation of individual characters is unchanged.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TextRotation
constructor
A new instance of TextRotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TextRotation
Returns a new instance of TextRotation
8293 8294 8295 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#angle ⇒ Fixnum
The angle between the standard orientation and the desired orientation.
Measured in degrees. Valid values are between -90 and 90. Positive
angles are angled upwards, negative are angled downwards.
Note: For LTR text direction positive angles are in the counterclockwise
direction, whereas for RTL they are in the clockwise direction
Corresponds to the JSON property angle
8275 8276 8277 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8275 def angle @angle end |
#vertical ⇒ Boolean Also known as: vertical?
If true, text reads top to bottom, but the orientation of individual
characters is unchanged.
For example:
| V |
| e |
| r |
| t |
| i |
| c |
| a |
| l |
Corresponds to the JSON property vertical
8290 8291 8292 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8290 def vertical @vertical end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8298 8299 8300 8301 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 8298 def update!(**args) @angle = args[:angle] if args.key?(:angle) @vertical = args[:vertical] if args.key?(:vertical) end |