Show / Hide Table of Contents

Class Color

Inheritance
System.Object
Color
Implements
Google.Apis.Requests.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 Color : IDirectResponseSchema

Properties

Alpha

The fraction of this color that should be applied to the pixel. That is, the final pixel color is defined by the equation:

pixel color = alpha * (this color) + (1.0 - alpha) * (background color)

This means that a value of 1.0 corresponds to a solid color, whereas a value of 0.0 corresponds to a completely transparent color. This uses a wrapper message rather than a simple float scalar so that it is possible to distinguish between a default value and the value being unset. If omitted, this color object is to be rendered as a solid color (as if the alpha value had been explicitly given with a value of 1.0).

Declaration
[JsonProperty("alpha")]
public virtual float? Alpha { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Blue

The amount of blue in the color as a value in the interval [0, 1].

Declaration
[JsonProperty("blue")]
public virtual float? Blue { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ETag

The ETag of the item.

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

Green

The amount of green in the color as a value in the interval [0, 1].

Declaration
[JsonProperty("green")]
public virtual float? Green { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Red

The amount of red in the color as a value in the interval [0, 1].

Declaration
[JsonProperty("red")]
public virtual float? Red { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top