blob: d4df9b3bb79c11cded80c50bac497e600afd0c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# frozen_string_literal: true
module Axlsx
# The GradientStop object represents a color point in a gradient.
# @see Open Office XML Part 1 §18.8.24
class GradientStop
# The color for this gradient stop
# @return [Color]
# @see Color
attr_reader :color
# The position of the color
# @return [Float]
attr_reader :position
# Creates a new GradientStop object
# @param [Color] color
# @param [Float] position
def initialize(color, position)
self.color = color
self.position = position
end
# @see color
def color=(v) DataTypeValidator.validate "GradientStop.color", Color, v; @color = v end
# @see position
def position=(v) DataTypeValidator.validate "GradientStop.position", Float, v, ->(arg) { arg >= 0 && arg <= 1 }; @position = v end
# Serializes the object
# @param [String] str
# @return [String]
def to_xml_string(str = +'')
str << '<stop position="' << position.to_s << '">'
color.to_xml_string(str)
str << '</stop>'
end
end
end
|