Class: Google::Apis::SlidesV1::ColorStop

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb

Overview

A color and position in a gradient band.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ColorStop

Returns a new instance of ColorStop.



313
314
315
# File 'lib/google/apis/slides_v1/classes.rb', line 313

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alphaFloat

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

Returns:

  • (Float)


300
301
302
# File 'lib/google/apis/slides_v1/classes.rb', line 300

def alpha
  @alpha
end

#colorGoogle::Apis::SlidesV1::OpaqueColor

A themeable solid color value. Corresponds to the JSON property color



305
306
307
# File 'lib/google/apis/slides_v1/classes.rb', line 305

def color
  @color
end

#positionFloat

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]. Corresponds to the JSON property position

Returns:

  • (Float)


311
312
313
# File 'lib/google/apis/slides_v1/classes.rb', line 311

def position
  @position
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



318
319
320
321
322
# File 'lib/google/apis/slides_v1/classes.rb', line 318

def update!(**args)
  @alpha = args[:alpha] if args.key?(:alpha)
  @color = args[:color] if args.key?(:color)
  @position = args[:position] if args.key?(:position)
end