class OoxmlParser::SchemeColor
Class for working with SchemeColor
Attributes
converted_color[RW]
properties[RW]
value[RW]
Public Class Methods
new(value = nil, converted_color = 0, parent: nil)
click to toggle source
# File lib/ooxml_parser/common_parser/common_data/colors/scheme_color.rb, line 8 def initialize(value = nil, converted_color = 0, parent: nil) @value = value @converted_color = converted_color @parent = parent end
Public Instance Methods
to_s()
click to toggle source
@return [String] result of convert of object to string
# File lib/ooxml_parser/common_parser/common_data/colors/scheme_color.rb, line 15 def to_s @converted_color.to_s end