Sha256: 23938a2a253c804799275472098e87c60fa53474260ff58584d078d93549fe08

Contents?: true

Size: 865 Bytes

Versions: 2

Compression:

Stored size: 865 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.parse_coordinates_from_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

2 entries across 2 versions & 1 rubygems

Version Path
ooxml_parser-0.22.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/sheet_view/selection.rb
ooxml_parser-0.21.0 lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/sheet_view/selection.rb