Show / Hide Table of Contents

Class TextRotation

The rotation applied to text in a cell.

Inheritance
System.Object
TextRotation
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class TextRotation : object, IDirectResponseSchema

Properties

Angle

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

Declaration
public virtual Nullable<int> Angle { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

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 |

Declaration
public virtual Nullable<bool> Vertical { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top