Show / Hide Table of Contents

Class ThemeColorPair

A pair mapping a spreadsheet theme color type to the concrete color it represents.

Inheritance
System.Object
ThemeColorPair
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class ThemeColorPair : IDirectResponseSchema

Properties

Color

The concrete color corresponding to the theme color type.

Declaration
[JsonProperty("color")]
public virtual ColorStyle Color { get; set; }
Property Value
Type Description
ColorStyle

ColorType

The type of the spreadsheet theme color.

Declaration
[JsonProperty("colorType")]
public virtual string ColorType { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top