class Xlsxrb::Ooxml::Reader::CellWatchesListener
SAX2 listener for parsing <cellWatches> element.
Attributes
Public Class Methods
Public Instance Methods
# File lib/xlsxrb/ooxml/reader.rb, line 3359 def start_element(_uri, local_name, qname, attributes) name = element_name(local_name, qname) @watches << attributes["r"] if name == "cellWatch" && attributes["r"] end