Sha256: 705e9b4a3cdd7a2aadf768545db4e5c7389a34a332cd91eee222fa02978b18aa
Contents?: true
Size: 1.91 KB
Versions: 20
Compression:
Stored size: 1.91 KB
Contents
require 'rubyXL/objects/ooxml_object' require 'rubyXL/objects/simple_types' module RubyXL # http://www.schemacentral.com/sc/ooxml/e-ssml_gradientFill-1.html class Stop < OOXMLObject define_attribute(:position, :float) define_child_node(RubyXL::Color) define_element_name 'stop' end # http://www.schemacentral.com/sc/ooxml/e-ssml_patternFill-1.html class PatternFill < OOXMLObject define_attribute(:patternType, RubyXL::ST_PatternType) define_child_node(RubyXL::Color, :node_name => :fgColor ) define_child_node(RubyXL::Color, :node_name => :bgColor ) define_element_name 'patternFill' end # http://www.schemacentral.com/sc/ooxml/e-ssml_gradientFill-1.html class GradientFill < OOXMLObject define_attribute(:type, RubyXL::ST_GradientType, :default => 'linear') define_attribute(:degree, :float, :default => 0) define_attribute(:left, :float, :default => 0) define_attribute(:right, :float, :default => 0) define_attribute(:top, :float, :default => 0) define_attribute(:bottom, :float, :default => 0) define_child_node(RubyXL::Stop, :collection => true) define_element_name 'gradientFill' end # http://www.schemacentral.com/sc/ooxml/e-ssml_fill-1.html class Fill < OOXMLObject define_child_node(RubyXL::PatternFill) define_child_node(RubyXL::GradientFill) define_element_name 'fill' set_countable end # http://www.schemacentral.com/sc/ooxml/e-ssml_fills-1.html class Fills < OOXMLContainerObject define_child_node(RubyXL::Fill, :collection => :with_count) define_element_name 'fills' def self.defaults self.new(:_ => [ RubyXL::Fill.new(:pattern_fill => RubyXL::PatternFill.new(:pattern_type => 'none')), RubyXL::Fill.new(:pattern_fill => RubyXL::PatternFill.new(:pattern_type => 'gray125')) ]) end end end
Version data entries
20 entries across 20 versions & 1 rubygems