Sha256: d1f7e61750804285091acc43a2f1bdc10205cdea2b83e4fbd353284ba3f91b79
Contents?: true
Size: 852 Bytes
Versions: 19
Compression:
Stored size: 852 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for `selection` data class Selection < OOXMLDocumentObject # @return [Coordinates] Reference to the active cell attr_reader :active_cell # @return [Integer] Id of active cell attr_reader :active_cell_id # @return [String] Selected range attr_reader :reference_sequence # Parse Selection object # @param node [Nokogiri::XML:Element] node to parse # @return [Selection] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'activeCell' @active_cell = Coordinates.new.parse_string(value.value) when 'activeCellId' @active_cell_id = value.value.to_i when 'sqref' @reference_sequence = value.value.to_s end end self end end end
Version data entries
19 entries across 19 versions & 1 rubygems