Class: ErrorCell
Constant Summary collapse
- ERROR_CODES =
{ 0x00 => 0, # Intersection of two cell ranges is empty 0x07 => 7, # Division by zero 0x0F => 15, # Wrong type of operand 0x17 => 23, # Illegal or deleted cell reference 0x1D => 29, # Wrong function or range name 0x24 => 36, # Value range overflow 0x2A => 42, # Argument or function not available '#NULL!' => 0, # Intersection of two cell ranges is empty '#DIV/0!' => 7, # Division by zero '#VALUE!' => 36, # Wrong type of operand '#REF!' => 23, # Illegal or deleted cell reference '#NAME?' => 29, # Wrong function or range name '#NUM!' => 36, # Value range overflow '#N/A!' => 42 # Argument or function not available }
Instance Attribute Summary
Attributes inherited from Cell
Instance Method Summary collapse
-
#initialize(parent, index, format_index, error_string_or_code) ⇒ ErrorCell
constructor
A new instance of ErrorCell.
- #to_biff ⇒ Object
Methods inherited from Cell
Constructor Details
#initialize(parent, index, format_index, error_string_or_code) ⇒ ErrorCell
Returns a new instance of ErrorCell.
169 170 171 172 173 174 175 176 177 |
# File 'lib/surpass/cell.rb', line 169 def initialize(parent, index, format_index, error_string_or_code) @parent = parent @index = index @format_index = format_index @number = ERROR_CODES[error_string_or_code] @is_error = 1 raise "invalid error code #{error_string_or_code}" if @number.nil? end |
Instance Method Details
#to_biff ⇒ Object
179 180 181 |
# File 'lib/surpass/cell.rb', line 179 def to_biff BoolErrRecord.new(@parent.index, @index, @format_index, @number, @is_error) end |