Class: OoxmlParser::Column

Inherits:
OOXMLDocumentObject show all
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

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

This class inherits a constructor from OoxmlParser::OOXMLDocumentObject

Instance Attribute Details

#separatorObject

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

#spaceObject

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

#widthObject

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

Parameters:

  • node (Nokogiri::XML:Node)

    with Column

Returns:

  • (Column)

    result of parsing



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