Show / Hide Table of Contents

Class Color

Inheritance
System.Object
Color
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class Color : object, 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
public virtual Nullable<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
public virtual Nullable<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
public virtual Nullable<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
public virtual Nullable<float> Red { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
Back to top