aboutsummaryrefslogtreecommitdiffstats
path: root/lib/roo/excelx/cell/empty.rb
blob: 49a20e7856a0a2e302c878990e166ccfe5a45fbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

module Roo
  class Excelx
    class Cell
      class Empty < Cell::Base
        attr_reader :value, :formula, :format, :cell_type, :cell_value, :hyperlink, :coordinate

        def initialize(coordinate)
          @value = @formula = @format = @cell_type = @cell_value = @hyperlink = nil
          @coordinate = coordinate
        end

        def empty?
          true
        end
      end
    end
  end
end