Method: Osheet::Column#initialize

Defined in:
lib/osheet/column.rb

#initialize(width = nil) ⇒ Column

Returns a new instance of Column.



13
14
15
16
17
18
# File 'lib/osheet/column.rb', line 13

def initialize(width=nil)
  @width   = width
  @autofit = false
  @hidden  = false
  @format  = Format.new(:general)
end