Class: RubyXL::XF

Inherits:
OOXMLObject show all
Defined in:
lib/rubyXL/objects/cell_style.rb

Overview

Instance Method Summary collapse

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

Instance Method Details

#==(other) ⇒ Object



58
59
60
61
62
63
64
# File 'lib/rubyXL/objects/cell_style.rb', line 58

def ==(other)
  (self.num_fmt_id == other.num_fmt_id) &&
    (self.font_id == other.font_id) &&
    (self.fill_id == other.fill_id) &&
    (self.border_id == other.border_id) &&
    (self.xf_id == other.xf_id)
end