class Ruby::Ods::Manager::Column

Attributes

content[R]

Public Class Methods

new(content) click to toggle source
# File lib/ruby/ods.rb, line 200
def initialize(content)
  @content = content
end

Public Instance Methods

attr(name) click to toggle source
# File lib/ruby/ods.rb, line 204
def attr(name)
  @content['number-columns-' + name]
end
set_attr(name, value) click to toggle source
# File lib/ruby/ods.rb, line 208
def set_attr(name, value)
  @content['table:number-columns-' + name] = value.to_s
end