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