Class: Axlsx::Col

Inherits:
Object
  • Object
show all
Defined in:
lib/spreadsheet_architect/monkey_patches/axlsx_column_width.rb

Instance Method Summary collapse

Instance Method Details

#width=(v) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/spreadsheet_architect/monkey_patches/axlsx_column_width.rb', line 11

def width=(v)
  if v.nil?
    @custom_width = false
    @width = nil
  elsif @width.nil? || @width < v+5
    @custom_width = @best_fit = v != nil
    @width = v + 5
  end
end