Class: RubyXL::RawOOXML
- Inherits:
-
OOXMLObject
- Object
- OOXMLObject
- RubyXL::RawOOXML
- Defined in:
- lib/rubyXL/objects/extensions.rb
Overview
Direct Known Subclasses
Instance Attribute Summary collapse
-
#raw_xml ⇒ Object
Returns the value of attribute raw_xml.
Attributes included from OOXMLObjectInstanceMethods
Class Method Summary collapse
Instance Method Summary collapse
Methods included from OOXMLObjectInstanceMethods
#==, #before_write_xml, included, #index_in_collection, #initialize
Instance Attribute Details
#raw_xml ⇒ Object
Returns the value of attribute raw_xml.
6 7 8 |
# File 'lib/rubyXL/objects/extensions.rb', line 6 def raw_xml @raw_xml end |
Class Method Details
.parse(node, ignore) ⇒ Object
8 9 10 11 12 |
# File 'lib/rubyXL/objects/extensions.rb', line 8 def self.parse(node, ignore) obj = new obj.raw_xml = node.to_xml obj end |
Instance Method Details
#write_xml(xml, node_name_override = nil) ⇒ Object
14 15 16 |
# File 'lib/rubyXL/objects/extensions.rb', line 14 def write_xml(xml, node_name_override = nil) self.raw_xml end |