Class: OoxmlParser::Column
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::Column
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/page_properties/columns/column.rb
Overview
Class for parsing ‘w:col` object
Instance Attribute Summary collapse
-
#separator ⇒ Object
Returns the value of attribute separator.
-
#space ⇒ Object
Returns the value of attribute space.
-
#width ⇒ Object
Returns the value of attribute width.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ Column
Parse Column.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#separator ⇒ Object
Returns the value of attribute separator.
6 7 8 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/columns/column.rb', line 6 def separator @separator end |
#space ⇒ Object
Returns the value of attribute space.
6 7 8 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/columns/column.rb', line 6 def space @space end |
#width ⇒ Object
Returns the value of attribute width.
6 7 8 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/columns/column.rb', line 6 def width @width end |
Instance Method Details
#parse(node) ⇒ Column
Parse Column
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/ooxml_parser/docx_parser/document_structure/page_properties/columns/column.rb', line 11 def parse(node) node.attributes.each do |key, value| case key when 'w' @width = OoxmlSize.new(value.value.to_f) when 'space' @space = OoxmlSize.new(value.value.to_f) end end self end |