class Xlsxrb::Ooxml::Reader::CalcChainListener
SAX2 listener for parsing calcChain.xml.
Attributes
Public Class Methods
Public Instance Methods
# File lib/xlsxrb/ooxml/reader.rb, line 4205 def start_element(_uri, local_name, qname, attributes) name = element_name(local_name, qname) return unless name == "c" entry = {} entry[:ref] = attributes["r"] if attributes["r"] i = attributes["i"] entry[:sheet_id] = i.to_i if i @entries << entry end