Show / Hide Table of Contents

Class ColorStop

A color and position in a gradient band.

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

Properties

Alpha

The alpha value of this color in the gradient band. Defaults to 1.0, fully opaque.

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

Color

The color of the gradient stop.

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

ETag

The ETag of the item.

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

Position

The relative position of the color stop in the gradient band measured in percentage. The value should be in the interval [0.0, 1.0].

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

Implements

IDirectResponseSchema
Back to top