Class: OoxmlParser::CellXfs

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

Overview

Class for parsing ‘cellXfs`

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) ⇒ CellXfs

Returns a new instance of CellXfs.



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

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

Instance Attribute Details

#countInteger (readonly)

Returns count of cell xfs.

Returns:

  • (Integer)

    count of cell xfs



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

def count
  @count
end

#xf_arrayArray<Xf> (readonly)

Returns list of xf’s.

Returns:

  • (Array<Xf>)

    list of xf’s



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

def xf_array
  @xf_array
end

Instance Method Details

#parse(node) ⇒ CellXfs

Parse CellXfs data

Parameters:

  • node (Nokogiri::XML:Element)

    with CellXfs data

Returns:

  • (CellXfs)

    value of CellXfs data



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/cell_xfs.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 'xf'
      @xf_array << Xf.new(parent: self).parse(node_child)
    end
  end
  self
end