Sha256: cabe6978f3406b11d6f6c89a915560b5b91db44eab6c768866cc60632d5c46d2
Contents?: true
Size: 1.01 KB
Versions: 13
Compression:
Stored size: 1.01 KB
Contents
module Axlsx # A simple list of merged cells class MergedCells < SimpleTypedList # creates a new MergedCells object # @param [Worksheet] worksheet def initialize(worksheet) raise ArgumentError, 'you must provide a worksheet' unless worksheet.is_a?(Worksheet) super String end # adds cells to the merged cells collection # @param [Array||String] cells The cells to add to the merged cells # collection. This can be an array of actual cells or a string style # range like 'A1:C1' def add(cells) @list << if cells.is_a?(String) cells elsif cells.is_a?(Array) Axlsx::cell_range(cells, false) end end # serialize the object # @param [String] str # @return [String] def to_xml_string(str = '') return if @list.empty? str << "<mergeCells count='#{size}'>" each { |merged_cell| str << "<mergeCell ref='#{merged_cell}'></mergeCell>" } str << '</mergeCells>' end end end
Version data entries
13 entries across 13 versions & 2 rubygems