Class: RubyXL::Fonts

Inherits:
OOXMLContainerObject show all
Defined in:
lib/rubyXL/objects/font.rb

Overview

Class Method Summary collapse

Methods inherited from OOXMLContainerObject

#before_write_xml, define_count_attribute, #initialize, #inspect

Methods included from OOXMLObjectClassMethods

#define_attribute, #define_child_node, #define_element_name, #obtain_class_variable, #parse, #set_countable

Methods included from OOXMLObjectInstanceMethods

#before_write_xml, #dup, #index_in_collection, #initialize, #write_xml

Constructor Details

This class inherits a constructor from RubyXL::OOXMLContainerObject

Class Method Details

.defaultsObject



101
102
103
104
105
106
107
108
# File 'lib/rubyXL/objects/font.rb', line 101

def self.defaults
  self.new(:_ => [ 
             RubyXL::Font.new(:name => RubyXL::StringValue.new(:val => 'Verdana'),
                              :sz => RubyXL::FloatValue.new(:val => 10) ),
             RubyXL::Font.new(:name => RubyXL::StringValue.new(:val => 'Verdana'),
                              :sz => RubyXL::FloatValue.new(:val => 8) )
           ])
end