Show / Hide Table of Contents

Class RgbColor

An RGB color.

Inheritance
System.Object
RgbColor
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.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class RgbColor : IDirectResponseSchema

Properties

Blue

The blue component of the color, from 0.0 to 1.0.

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 green component of the color, from 0.0 to 1.0.

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

Red

The red component of the color, from 0.0 to 1.0.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top