Class: OoxmlParser::XlsxBorders

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb

Overview

Class for parsing ‘borders`

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

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

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ XlsxBorders

Returns a new instance of XlsxBorders.



12
13
14
15
# File 'lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb', line 12

def initialize(parent: nil)
  @borders_array = []
  super
end

Instance Attribute Details

#borders_arrayArray<XlsxBorder> (readonly)

Returns list of xlsx borders.

Returns:



10
11
12
# File 'lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb', line 10

def borders_array
  @borders_array
end

#countInteger (readonly)

Returns count of xlsx borders.

Returns:

  • (Integer)

    count of xlsx borders



8
9
10
# File 'lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb', line 8

def count
  @count
end

Instance Method Details

#parse(node) ⇒ XlsxBorders

Parse XlsxBorders data

Parameters:

  • node (Nokogiri::XML:Element)

    with XlsxBorders data

Returns:



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/ooxml_parser/xlsx_parser/workbook/style_sheet/xlsx_borders.rb', line 20

def parse(node)
  node.attributes.each do |key, value|
    case key
    when 'count'
      @count = value.value.to_i
    end
  end

  node.xpath('*').each do |node_child|
    case node_child.name
    when 'border'
      @borders_array << XlsxBorder.new(parent: self).parse(node_child)
    end
  end
  self
end