Sha256: 75a2da5a0de14f54d9d5253716a6bd7b25efc1b9d3920a1d812259e7d022c202
Contents?: true
Size: 1.08 KB
Versions: 4
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Axlsx # A self serializing collection of ranges that should be protected in # the worksheet class ProtectedRanges < SimpleTypedList attr_reader :worksheet def initialize(worksheet) raise ArgumentError, 'You must provide a worksheet' unless worksheet.is_a?(Worksheet) super(ProtectedRange) @worksheet = worksheet end # Adds a protected range # @param [Array|String] cells A string range reference or array of cells that will be protected def add_range(cells) sqref = if cells.is_a?(String) cells elsif cells.is_a?(SimpleTypedList) || cells.is_a?(Array) Axlsx.cell_range(cells, false) end self << ProtectedRange.new(sqref: sqref, name: "Range#{size}") last end # Serializes the protected ranges # @param [String] str # @return [String] def to_xml_string(str = +'') return if empty? str << '<protectedRanges>' each { |range| range.to_xml_string(str) } str << '</protectedRanges>' end end end
Version data entries
4 entries across 4 versions & 2 rubygems