Sha256: 7a445db3292651227ecfc62c92e01f8363e7dfff823077686e91338f24bfcc95
Contents?: true
Size: 385 Bytes
Versions: 3
Compression:
Stored size: 385 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for working with SchemeColor class SchemeColor attr_accessor :value, :properties, :converted_color def initialize(value = nil, converted_color = 0, parent: nil) @value = value @converted_color = converted_color @parent = parent end def to_s @converted_color.to_s end end end
Version data entries
3 entries across 3 versions & 1 rubygems